Branches

@if(Gate::check('branch-create')) Create Branches @endif
@forelse($branches as $key => $branch) @empty @endforelse
ID Code Name City Contact Email Status Actions
{{ $key + 1 }} {{ $branch->branch_code }} {{ $branch->branch_name }} {{ $branch->city }} {{ $branch->contact_number }} {{ $branch->email }} @if($branch->status == 'active') Active @else Inactive @endif Edit @if(Gate::check('branch-delete'))
@csrf @method('DELETE')
@endif
No branches found.
{{ $branches->links() }}