| {{ __('Building Name') }} |
{{ __('Branch') }} |
{{ __('Code') }} |
{{ __('Address') }} |
{{ __('Status') }} |
{{ __('Actions') }} |
@forelse($buildings as $building)
| {{ $building->name }} |
{{ $building->branch->name ?? '-' }} |
{{ $building->code ?? '-' }} |
{{ $building->address ?? '-' }} |
{{ $building->active ? __('Active') : __('Inactive') }}
|
{{ __('Edit') }}
|
@empty
|
{{ \App\Helpers\TranslationHelper::transFromDatabase('No buildings configured', __('لم يتم تهيئة مباني بعد')) }}
|
@endforelse
{{ $buildings->links() }}