@php $siteSettings= \App\SiteCommonHelper::getSiteSettings(); @endphp @if($siteSettings){{ $siteSettings->site_name }} @else {{'GoodLuck Shop'}} @endif –Best Online Shopping in Bangladesh! @yield('page_css') @php $themeClassName=null; if($siteSettings){ if($siteSettings->default_theme=="dark") { $themeClassName='theme-dark'; } else { $themeClassName=null; } } @endphp @include('site.layouts.header')
@php $total = 0 @endphp @foreach((array) session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity'] @endphp @endforeach

Total: ৳ {{ $total }}

@yield('content')
@include('site.layouts.footer'); @yield('page_scripts') {!! \Toastr::message() !!}