@extends('layouts.app') @section('title', 'Branches') @section('content') @include('components.breadcrumb', ['items' => [['label' => 'Dashboard', 'url' => route('dashboard')], ['label' => 'Master Data', 'url' => '#'], ['label' => 'Branches']]])
Branch List
@forelse($branches as $b) @empty @endforelse
#CodeNameCompanyCityPhoneEmailStatusActions
{{ $loop->iteration }} {{ $b->code }} {{ $b->name }} {{ $b->company->name ?? '-' }} {{ $b->city->name ?? '-' }} {{ $b->phone ?? '-' }} {{ $b->email ?? '-' }} {{ ucfirst($b->status) }}
No branches found
@endsection @push('scripts') @endpush