@extends('layouts.master') @section('title') @lang('translation.Branches') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Admin @endslot @slot('title') Branches Management @endslot @endcomponent
| # | Branch Name | Code | Address | Employer | Contact | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($branches->currentPage() - 1) * $branches->perPage() }} | {{ $branch->name }} | {{ $branch->code }} | {{ $branch->location }} | @if($branch->employer) {{ $branch->employer->name }} @else N/A @endif |
{{ $branch->contact_email }}
@if($branch->phone)
{{ $branch->phone }} @endif |
{{ $branch->active ? 'Active' : 'Inactive' }} @if(method_exists($branch, 'trashed') && $branch->trashed()) Deleted @endif | |
No branches foundTry adjusting your search or filter to find what you're looking for. Add New Branch |
|||||||