{{ __('Mechanics') }}
← {{ __('Back to Stock In/Out') }}

{{ __('Mechanics') }}

{{ __('People who service your fleet.') }}

{{ __('Add Mechanic') }}
@if (session('status'))
{{ session('status') }}
@endif
@if ($mechanics->isEmpty())

{{ __('No mechanics yet.') }}

{{ __('Add your first mechanic') }}
@else @foreach ($mechanics as $mechanic) @endforeach
{{ __('Name') }} {{ __('Phone') }} {{ __('Specialization') }}
{{ $mechanic->name }} {{ $mechanic->phone ?: '—' }} {{ $mechanic->specialization ?: '—' }} {{ __('Edit') }}
{{ $mechanics->links() }}
@endif