@extends('layouts.super-admin') @section('title', 'Branch Management') @section('page_title', 'Branch Management') @section('content')

Restaurant Branches

Add New Branch
@forelse($branches as $branch) @empty @endforelse
Branch Name Client (Brand) Slug Location Status Actions
{{ $branch->name }} {{ $branch->client->name }} {{ $branch->slug }} {{ $branch->address ?? 'N/A' }} @if($branch->active) Online @else Offline @endif
Edit
@csrf @method('DELETE')
No branches found.
{{ $branches->links() }}
@endsection