@extends('layouts.app') @section('title', __('messages.branches')) @section('content')

{{ __('messages.branches') }}

@if(session('success')) @endif @if($branches->count() > 0)
@foreach($branches as $branch) @endforeach
ID Name Address Phone Acc. Code Status Actions
#{{ $branch->id }}
{{ $branch->name }}
{{ $branch->name_ar }}
{{ $branch->address ?? 'N/A' }} {{ $branch->phone ?? 'N/A' }} {{ $branch->account_code ?? 'N/A' }} Active
@else

No branches found. Click "Add New Branch" to create one.

@endif
@endsection