@extends('layout.app') @section('page-title', $title) @section('meta_description', $category->meta_description) @section('canonical-link') @endsection @if(PROD_ENV === true) @section('tracking') @endsection @endif @if(is_array($category_wow_images) && !empty($category_wow_images)) @section('main-slider')
@foreach($category_wow_images as $image_path)
{{ $category->category_name }}
@endforeach

{{ $category->category_name }}

@endsection @endif @section('breadcrumb')
Home {{ $title }}
@endsection @section('content') @if(count($products) > 0)
@if(!empty($category->category_description))

{!! empty($category->category_description)? $category->category_name : $category->category_description !!}

@endif @include('partials._product_list_layout', ['products' => $products, 'category' => $category])
@else
Coming soon!
@endif @endsection @if($GLOBALS['session']->admin) @section('admin-panel') @endsection @endif @section('modals') @if(count($products) > 0) @include('partials.modals._quick_view') @include('partials._filter') @endif @if($GLOBALS['session']->admin) @include('partials.admin._clicks_report_form') @include('partials.modals._admin_product') @endif @endsection @if(count($products) > 0) @push('after-foot-non-admin-js') @endpush @push('after-foot-js') @endpush @endif