@lang('sidebar.branches_reports')
@if (session('message'))
{{ session('message') }}
@endif
| @lang('branch_report.ID') | @lang('branch_report.Name') | @lang('branch_report.Address') | @lang('branch_report.Country') | @lang('branch_report.Manager') | @lang('branch_report.Phone') | @lang('branch_report.Email') | @lang('branch_report.Actions') |
|---|---|---|---|---|---|---|---|
| {{ $branch->id }} | {{ app()->getLocale() == 'en' ? $branch->name_en : $branch->name_ar}} | {{ app()->getLocale() == 'en' ? $branch->address_en : $branch->address_ar }} | {{ app()->getLocale() == 'en' ? $branch->country->name_en : $branch->country->name_ar }} | {{ $branch->employess && $branch->employess->first_name ? ($branch->employess->first_name." ".$branch->employess->last_name) : null }} | {{ $branch->phone }} | {{ $branch->email }} | @if (auth('admin')->user()->hasPermissionTo('detail report_branches', 'admin')) @lang('branch_report.Details') @endif |