@extends('layouts.app') @section('content')
{{-- Remove this button if the module has no create form --}} Create New
@forelse ($branches as $branch) @empty @endforelse
Branch Address City State Postcode Phone Operating Hours Status Action
{{ $branch->name }} @if ($branch->code)
{{ $branch->code }}
@endif
{{ $branch->address ?? '-' }}
{{ $branch->city ?? '-' }}
{{ $branch->state ?? '-' }}
{{ $branch->postcode ?? '-' }}
{{ $branch->phone ?? '-' }}
{{ $branch->operating_hours ?? '-' }}
@if ($branch->is_active) Active @else Inactive @endif
@if ($branch->is_active) @else @endif
No records found.

@endsection @section('styles') @endsection @section('scripts') @endsection