@extends('layouts.app') @section('title', __('Dentists')) @section('content')
| {{ __('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.') }} | |||||