{{--Home page html--}} @extends('shop::layouts.master') @php if (!empty($currentChannel->home_seo)) { $homeSEO = json_decode($currentChannel->home_seo); $metaTitle = $homeSEO->meta_title; $metaDescription = $homeSEO->meta_description; $metaKeywords = $homeSEO->meta_keywords; } @endphp @section('page_title') {{ @$metaTitle ?? config('app.name') }} @endsection @section('seo') @if (isset($homeSEO)) @isset($metaDescription) @endisset @isset($metaKeywords) @endisset @endif @stop @section('content-wrapper') @include('shop::home.slider')