@extends('layouts.app') @section('title', 'Branches - Pharmacy Management') @section('content')

Branches

Manage pharmacy branches and locations

@can('manage_branches') New Branch @endcan
@can('manage_branches') @endcan @foreach($branches as $branch) @can('manage_branches') @endcan @endforeach
Name Code Phone Email StatusActions
{{ $branch->name }} {{ $branch->code }} {{ $branch->phone ?? '-' }} {{ $branch->email ?? '-' }} @if($branch->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
{{ $branches->links() }}
@endsection