@extends('layouts.adminfonts') @section('title', 'Font Details') @section('page-title', 'Font Details') @section('content')
{{ $font->display_name }}
Font Information
CSS Name: {{ $font->font_name }}
Display Name: {{ $font->display_name }}
File Name: {{ $font->file_name }}
File Path: {{ $font->file_path }}
Gender: {{ $font->gender }}
Font Size: {{ $font->font_size }}vw
Top Position: {{ $font->top_position }}px
Rating:
@for ($i = 1; $i <= 5; $i++) @endfor ({{ $font->review_rating }}/5)
Uppercase Only: @if ($font->uppercase_only) Yes @else No @endif
Tags: @if ($font->tags && count($font->tags) > 0)
@foreach ($font->tags as $tag) {{ $tag }} @endforeach
@else No tags assigned @endif
Status: {{ $font->is_active ? 'Active' : 'Inactive' }}
Created: {{ $font->created_at->format('M d, Y H:i') }}
Updated: {{ $font->updated_at->format('M d, Y H:i') }}
CSS Style
{{ $font->style }}
Font URL
{{ $font->font_url }}
Actions
Edit Font
@csrf
@csrf @method('DELETE')
Font Preview
{{ $font->font_size }}vw
#667eea
Example
Usage Example
CSS:
.my-text {
  {{ $font->style }}
}
HTML:
<div class="my-text">Your Text Here</div>
Back to Font List
@endsection @section('scripts') @endsection