@extends('layouts.app')
@section('title')
Branches
@endsection
@section('content')
Name |
Address |
Phone |
Email |
Status |
Actions |
@forelse($branches as $branch)
{{ $branch->name }} |
{{ $branch->address }} |
{{ $branch->phone }} |
{{ $branch->email }} |
@if($branch->status)
Active
@else
Inactive
@endif
|
@can('edit_branches')
@endcan
@can('delete_branches')
@endcan
|
@empty
No branches found. |
@endforelse
{{ $branches->links() }}
@endsection