@extends('layouts.app') @section('title', 'Branches') @section('content')

Branches

@foreach ($branches as $b) @endforeach
NameAddressPhoneStaffOrdersStatus
{{ $b->name }} {{ $b->address }} {{ $b->phone }} {{ $b->users_count }} {{ $b->orders_count }}
@csrf @method('PUT')
@csrf @method('DELETE')
Assign each staff member to a branch when creating/editing their account (Staff → Edit). Owners/admins left without a branch can see and switch between all branches using the branch switcher in the top nav.
@endsection