@extends('layouts.app')
@section('title', 'Branches - Pharmacy Management')
@section('content')
Branches
Manage pharmacy branches and locations
@can('manage_branches')
New Branch
@endcan
| Name |
Code |
Phone |
Email |
Status |
@can('manage_branches')
Actions |
@endcan
@foreach($branches as $branch)
| {{ $branch->name }} |
{{ $branch->code }} |
{{ $branch->phone ?? '-' }} |
{{ $branch->email ?? '-' }} |
@if($branch->is_active)
Active
@else
Inactive
@endif
|
@can('manage_branches')
|
@endcan
@endforeach
{{ $branches->links() }}
@endsection