{{ \App\Helpers\TranslationHelper::transFromDatabase('Appointment Types', __('أنواع المواعيد')) }}

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

{{ __('Add Appointment Type') }}

@csrf
{{ __('Save') }}

{{ __('Appointment Types List') }}

@foreach($appointmentTypes as $type) @endforeach
{{ __('Name') }} {{ __('Status') }} {{ __('Actions') }}
{{ $type->name }} {{ $type->active ? __('Active') : __('Inactive') }} {{ __('Edit') }}
@csrf @method('DELETE')
{{ $appointmentTypes->links() }}