@php
$fonts = '';
$cssFont = '';
foreach (glob(LOKASI_FONT_DESA . '*.ttf') as $font) {
$url = site_url(LOKASI_FONT_DESA . $font);
$nameFont = ucfirst(pathinfo($font, PATHINFO_FILENAME));
$fonts .= $nameFont . '=' . pathinfo($font, PATHINFO_FILENAME) . '; ';
$cssFont .= "
@font-face {
font-family: '{$nameFont}';
src: url($url) format('ttf');
}
";
}
$fonts = trim($fonts);
$cssFont = trim($cssFont);
@endphp
@push('scripts')
@endpush