@extends('themes.backend.layouts.app') @section('page_title') {{ $dataArr['page_title'] }} @endsection @section('breadcrumb') {!! Breadcrumbs::render('dashboard') !!} @endsection @push('styles') @endpush @section('content')

Hello, {{ auth()->guard('admin')->user()->display_name }}!

Your {{ config('app.name') }} dashboard overview.

@forelse ($modules as $m)
{{-- TITLE --}}
{{ $m['title'] }}
{{-- COUNT --}}

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

{{-- VIEW ALL LINK --}} View All {{-- ICON BOX --}}
@empty

Later work on it.

@endforelse
@endsection