@extends('layouts.admin') @section('title', $branch->name) @section('page-title', $branch->name) @section('content')
Name
{{ $branch->name }}
Code
{{ $branch->code }}
Phone
{{ $branch->phone ?? '—' }}
Email
{{ $branch->email ?? '—' }}
Status
{{ $branch->status }}
Manager
{{ $branch->manager?->name ?? '—' }}
Address
{{ $branch->address ?: '—' }}
@can('edit branches') Edit @endcan Back to list
@if($branch->users->isNotEmpty())

Staff ({{ $branch->users->count() }})

View all staff →

@endif
@endsection