@extends('themes.backend.layouts.app')
@section('breadcrumb')
{{ Breadcrumbs::render('dashboard') }}
@endsection
@section('content')
{{-- Quick Total Boxes --}}
{{ $boxArr['total_enquiries'] }}
{{ $boxArr['total_new_patient_enquiries'] }}
{{ $boxArr['total_email_templates'] }}
{{ $boxArr['total_pages'] }}
{{-- Recent List Boxes --}}
@if(!empty($latestRecords['latest_enquiries']) && count($latestRecords['latest_enquiries'])>0)
@foreach($latestRecords['latest_enquiries'] as $record)
{{ $record->full_name ?? $record->name }}
{{ __('admin.added_date_txt') }} : {{ date(Config('commonconstants.dt_tm_frmt3'), strtotime($record->created_at)) }}
@endforeach
{{ __('admin.see_all_txt') }}
@endif
@if(!empty($latestRecords['latest_new_patient_enquiries']) && count($latestRecords['latest_new_patient_enquiries'])>0)
@foreach($latestRecords['latest_new_patient_enquiries'] as $record)
{{ $record->name }}
{{ __('admin.added_date_txt') }} : {{ date(Config('commonconstants.dt_tm_frmt3'), strtotime($record->created_at)) }}
@endforeach
{{ __('admin.see_all_txt') }}
@endif
@stop
@push('styles')
@endpush