@extends('layouts.app') @section('title', 'Branches') @section('content')
Manage locations for {{ $hotel->name }}
@if($canAddBranch) Add Branch @else Branch limit reached ({{ $hotel->branches()->count() }} / {{ $hotel->maxBranches() ?: '∞' }}) @endif
Plan limit: {{ $hotel->branches()->count() }} of {{ $hotel->maxBranches() }} branches used.
@endif| # | Branch | Phone | City | Status | HQ | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $branches->firstItem() + $loop->index }} |
{{ $branch->name }}
@if($branch->address)
{{ $branch->address }} @endif |
{{ $branch->email ?? '—' }} | {{ $branch->phone ?? '—' }} | {{ $branch->city ?? '—' }} | @if($branch->isActive()) Active @else Inactive @endif | @if($branch->is_headquarters) HQ @else — @endif | Edit |
| No branches yet. Add your first branch. | |||||||