@php $productSettings = $options->theme->products; $pTitle = $productSettings->page_title; $mTitle = $productSettings->meta_title; $mDesc = $productSettings->page_description; if (isset($category) && $category){ if ($category->page_title){ $pTitle = $category->page_title; } if ($category->meta_title){ $mTitle = $category->meta_title; } if ($category->description){ $mDesc = $category->description; } } if($pTitle){ $page_title = $pTitle; } @endphp @extends($_layout.'shop') @section('title', $page_title) @include($_lib.'register-meta') @if ($pTitle) @section('title', $pTitle) @endif @if ($mTitle) @section('meta_title', $mTitle) @endif @if ($mDesc) @section('meta_description', $mDesc) @endif @section('page.header.show', 'breadcrumb') @section('breadcrumb.section_class', 'section-large') @section('breadcrumb.container_class', 'container-max') @section('content') @include($_current.'templates.filter') @if (count($products))