@extends('layouts.master') @section('title') @lang('translation.Branches') @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Admin @endslot @slot('title') Branches Management @endslot @endcomponent
| # | Branch Name | Code | Address | Employer | Contact Info | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($branches->currentPage() - 1) * $branches->perPage() }} |
{{ $branch->name }}
|
{{ $branch->code }} | {{ Str::limit($branch->location, 50) }} |
@if($branch->employer)
@if($branch->employer->logo)
@else
N/A
@endif
{{ substr($branch->employer->name, 0, 1) }}
|
@if($branch->contact_person)
{{ $branch->contact_person }} @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 |
|||||||