@extends('layouts.app') @section('content')
| {{ app()->getLocale() == 'ar' ? 'اسم الفرع' : 'Branch Name' }} | {{ app()->getLocale() == 'ar' ? 'الكود' : 'Code' }} | {{ app()->getLocale() == 'ar' ? 'المدينة' : 'City' }} | {{ app()->getLocale() == 'ar' ? 'الحالة' : 'Status' }} | {{ app()->getLocale() == 'ar' ? 'السيارات' : 'Cars' }} | {{ app()->getLocale() == 'ar' ? 'الإجراءات' : 'Actions' }} |
|---|---|---|---|---|---|
| {{ $branch->name }} | {{ $branch->code }} | {{ $branch->city }} | {{ $branch->status == 'active' ? (app()->getLocale() == 'ar' ? 'نشط' : 'Active') : (app()->getLocale() == 'ar' ? 'معطل' : 'Inactive') }} | {{ $branch->employees_count }} | {{ app()->getLocale() == 'ar' ? 'عرض' : 'View' }} {{ app()->getLocale() == 'ar' ? 'تعديل' : 'Edit' }} |
| {{ app()->getLocale() == 'ar' ? 'لا توجد فروع' : 'No branches found' }} | |||||