@extends('shop::layouts.master') @inject ('productRatingHelper', 'Webkul\Product\Helpers\Review') @php $channel = core()->getCurrentChannel(); $homeSEO = $channel->home_seo; if (isset($homeSEO)) { $homeSEO = json_decode($channel->home_seo); $metaTitle = $homeSEO->meta_title; $metaDescription = $homeSEO->meta_description; $metaKeywords = $homeSEO->meta_keywords; } @endphp @section('page_title') {{ isset($metaTitle) ? $metaTitle : "" }} @endsection @section('head') @if (isset($homeSEO)) @isset($metaTitle) @endisset @isset($metaDescription) @endisset @isset($metaKeywords) @endisset @endif @endsection @push('css') @if (! empty($sliderData)) @else @endif @endpush @section('content-wrapper') @include('shop::home.slider') @endsection @section('full-content-wrapper')
{!! view_render_event('bagisto.shop.home.content.before') !!} @if ($velocityMetaData) {!! Blade::render($velocityMetaData->home_page_content) !!} @else @include('shop::home.advertisements.advertisement-four') @include('shop::home.featured-products') @include('shop::home.advertisements.advertisement-three') @include('shop::home.new-products') @include('shop::home.advertisements.advertisement-two') @endif {{ view_render_event('bagisto.shop.home.content.after') }}
@endsection