@extends('public.layout.app') @section('body')

{{ __('front.dashboard') ?? 'Dashboard' }}

@foreach($stats ?? [] as $label => $value)
{{ ucfirst(str_replace('_',' ', $label)) }}

{{ $value }}

@endforeach
@foreach($quick ?? [] as $item)@endforeach
@endsection