@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 ?: '—' }}
@if($branch->users->isNotEmpty())
@endif
@endsection