@extends('oxygen::layouts.master-dashboard') @section('content') {{ lotus()->pageHeadline('Dashboard') }} {{-- Example Breadcrumb. Remove this... --}} {{-- {{ lotus()->breadcrumbs([--}} {{-- ['Dashboard', route('dashboard')],--}} {{-- ['Google', 'http://www.google.com'],--}} {{-- ['Microsoft', 'http://www.microsoft.com'],--}} {{-- ['Tesla', null, true]--}} {{-- ]) }}--}} {{ lotus()->emptyStatePanel('Welcome to ' . config('app.name'), 'Today is ' . standard_date(now())) }} @if ($metrics->count())
@foreach ($metrics as $metric)
{{ $metric['title'] }}

{{ number_format($metric['count']) }}

{{ $metric['description'] }}

@if (!empty($metric['route'])) View Details @endif
@endforeach
@endif @stop