@extends('layouts.adminfonts') @section('title', 'Font Details') @section('page-title', 'Font Details') @section('content')
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') }} |
{{ $font->style }}
{{ $font->font_url }}
.my-text {
{{ $font->style }}
}
<div class="my-text">Your Text Here</div>