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