@use('app\Helpers\Helpers')
@php
$lang = Helpers::getLanguageByLocale(Session::get('locale', 'en'));
$themeOptions = Helpers::getThemeOptions();
@endphp
@include("frontend.layout.head")
@include("frontend.layout.header")
@hasSection('breadcrumb')
@yield('title')
{{ $themeOptions['general']['breadcrumb_description'] }}
@yield('breadcrumb')
@endif
@yield('content')
@include("frontend.layout.footer")
@include("frontend.layout.script")
@include("frontend.inc.alerts")