19 lines
378 B
PHP
19 lines
378 B
PHP
@php
|
|
use App\Services\ThemeHelper;
|
|
$configData = ThemeHelper::appClasses();
|
|
$isFront = true;
|
|
@endphp
|
|
|
|
@section('layoutContent')
|
|
|
|
@extends('layouts/commonMaster' )
|
|
|
|
@include('layouts/sections/navbar/navbar-front')
|
|
|
|
<!-- Sections:Start -->
|
|
@yield('content')
|
|
<!-- / Sections:End -->
|
|
|
|
@include('layouts/sections/footer/footer-front')
|
|
@endsection
|