@extends('layouts.admin') @section('title', 'Branches') @section('content')
Total Branches: {{ $branches->count() }}
Add Branch
@forelse($branches as $branch)
@if($branch->image) {{ $branch->name }} @endif @if($branch->is_main) Main Branch @endif

{{ $branch->name }}

{{ $branch->city }}

{{ $branch->address }}
{{ $branch->phone }}
{{ $branch->opening_time }} – {{ $branch->closing_time }}
{{ $branch->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@empty

No branches added yet.

@endforelse
@endsection