@extends('layouts.master') @section('title') {{ __('sentence.Dashboard') }} @endsection @section('content')
{{ __('sentence.New Appointments') }}
{{ $total_appointments_today->count() }}
{{ __('sentence.Total Appointments') }}
{{ $total_appointments }}
{{ __('sentence.New Patients') }}
{{ $total_patients_today }}
{{ __('sentence.All Patients') }}
{{ $total_patients }}
{{ __('sentence.Total Prescriptions') }}
{{ $total_prescriptions }}
{{ __('sentence.New Appointments') }} - {{ Today()->format('d M Y') }}
@forelse($total_appointments_today as $appointment) @empty @endforelse
ID {{ __('sentence.Patient Name') }} {{ __('sentence.Date') }} {{ __('sentence.Time Slot') }} {{ __('sentence.Status') }} {{ __('sentence.Created at') }} {{ __('sentence.Actions') }}
{{ $appointment->id }} {{ $appointment->User->name }} @if($appointment->visited == 0) @elseif($appointment->visited == 1) @else @endif {{ $appointment->created_at->format('d M Y H:i') }}


No hay citas para el día de hoy
@endsection @section('header') @endsection @section('footer') @endsection