{{ __('Branches') }}
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Branches

Manage branches for this dealer.

Create Branch
@forelse ($branches as $branch) @empty @endforelse
Name Code Address Default Active Users Created Actions
{{ $branch->name }} {{ $branch->code ?? '—' }} {{ $branch->address }} @if ($branch->is_default) Default @else @endif @if ($branch->is_active) Active @else Inactive @endif {{ $branch->users_count ?? 0 }} {{ $branch->created_at?->format('Y-m-d') ?? '—' }}
Edit Manage Users @if (! $branch->is_default)
@csrf @method('PATCH')
@endif @if (! $branch->is_default)
@csrf @method('PATCH')
@endif
No branches found.
{{ $branches->links() }}