@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('Typography Settings')}} @endsection @section('content')
@include('backend.partials.message')

{{__("Body Typography Settings")}}

@csrf
@php $font_family_selected = get_static_option('body_font_family') ?? get_static_option('body_font_family') ; $get_font_family_variants = property_exists($google_fonts,$font_family_selected) ? (array) $google_fonts->$font_family_selected : ['variants' => array('regular')]; @endphp

{{__("Heading Typography Settings")}}

{{__('Use different font family for heading tags ( h1,h2,h3,h4,h5,h6)')}}
@php $font_family_selected = get_static_option('heading_font_family') ?? ''; $get_font_family_variants = property_exists($google_fonts,$font_family_selected) ? (array) $google_fonts->$font_family_selected : ['variants' => array('regular')]; @endphp
@endsection @section('script') @endsection