@extends('layouts.app') @section('title', __('Dentists')) @section('content')

{{ __('Dentists') }}

@can('create', App\Models\Dentist::class) + {{ __('Add dentist') }} @endcan
@forelse($dentists as $dentist) @empty @endforelse
{{ __('Name') }}{{ __('Specialty') }} {{ __('Slot') }}{{ __('Online booking') }} {{ __('Status') }}
  {{ $dentist->name }} {{ $dentist->specialty }} {{ $dentist->slot_duration_min }} {{ __('min') }} {{ $dentist->is_bookable_online ? '✓' : '—' }} {{ __(ucfirst($dentist->status)) }} @can('update', $dentist) {{ __('Edit') }} @endcan
{{ __('No dentists yet. Add your first dentist to start booking.') }}
{{ $dentists->links() }} @endsection