@extends('layouts.app') @section('title') {{ __('messages.patients') }} @endsection @section('header_toolbar')

{{__('messages.patient.details')}}

@if(!getLogInUser()->hasRole('doctor')) @endif
@endsection @section('content')

{{$data['todayAppointmentCount']}}

{{__('messages.patient_dashboard.today_appointments')}}

{{$data['upcomingAppointmentCount']}}

{{__('messages.patient_dashboard.upcoming_appointments')}}

{{$data['completedAppointmentCount']}}

{{__('messages.patient_dashboard.completed_appointments')}}

{{Form::hidden('patient_role',getLogInUser()->hasRole('patient'),['id' => 'patientRolePatientDetail'])}} @include('patients.show_fields')
@endsection