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

@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' }}
@empty
@endforelse
@endsection