@include('frontend.common.head')
@yield('title', 'Barc')
@php
$theme = App\Helpers\CommonHelper::masterBrandColor();
@endphp
@if (!is_student_master())
@if($theme === 'default')
@yield('content')
@include('frontend.common.script')
@else
@yield('content')
@include('frontend.common.script')
@endif
@elseif(is_student_master())
@php
$theme = App\Helpers\CommonHelper::brandColor();
@endphp
@if($theme[0] === 'default')
@yield('content')
@include('frontend.common.script')
@else
@yield('content')
@include('frontend.common.script')
@endif
@endif