@extends('layouts.adminfonts') @section('title', 'Dashboard') @section('page-title', 'Admin Dashboard') @section('content')

{{ \App\Models\Font::count() }}

Total Fonts

{{ \App\Models\Font::where('is_active', true)->count() }}

Active Fonts

{{ \App\Models\Font::where('is_active', false)->count() }}

Inactive Fonts

Recent Fonts
@if (\App\Models\Font::count() > 0)
@foreach (\App\Models\Font::latest()->take(5)->get() as $font) @endforeach
Font Name Display Name Gender Status Created Actions
Example {{ $font->display_name }} {{ $font->gender }} {{ $font->is_active ? 'Active' : 'Inactive' }} {{ $font->created_at->format('M d, Y') }}
@else
No fonts uploaded yet

Start by uploading your first font!

Upload Font
@endif
@endsection