@extends('layouts.admin') @section('title', 'Branches') @section('content')
Add Branch
@foreach($branches as $branch) @endforeach
Name Address Phone Tax Rate Counters Actions
{{ $branch->name }} {{ $branch->address ?? '-' }} {{ $branch->phone ?? '-' }} {{ $branch->tax_rate }}% {{ $branch->counters_count }} Edit
@csrf @method('DELETE')
{{ $branches->links() }} @endsection