{{ \App\Helpers\TranslationHelper::transFromDatabase('Medical Devices', __('الأجهزة الطبية')) }}

{{ \App\Helpers\TranslationHelper::transFromDatabase('Back', __('عودة')) }}

{{ __('Add Device') }}

@csrf
@php $branches = \App\Models\Branch::where('company_id', auth()->user()->company_id)->get(); @endphp
{{ __('Save') }}

{{ __('Devices List') }}

@foreach($devices as $device) @endforeach
{{ __('Name') }} {{ __('Branch') }} {{ __('Status') }} {{ __('Actions') }}
{{ $device->name }} ({{ $device->model }}) {{ $device->branch->name }} {{ $device->active ? __('Active') : __('Inactive') }} {{ __('Edit') }}
@csrf @method('DELETE')
{{ $devices->links() }}