@extends($_layout . 'master')
@section('title', $page_title)
@include($_lib . 'register-meta')
@section('body.class', 'product-page')
@section('content')
@include($_template . 'page-header', [
'title' => $page_title,
// 'sub_title' => isset($category) && $category->description ? $category->description : $dynamic->description,
])
@php
// $tabs = get_product_page_tabs();
$t = $tab ?? 'all';
@endphp
@include($_current . 'templates.tabs', ['tab' => $t])
@if (count($collections))
@foreach ($collections as $item)
@php
// $u = $item->getViewUrl();
$u = route('web.products', ['collection' => $item->id]);
// $url.="?collection=" . $item->id;
@endphp
@endforeach
@else
Không tìm thấy kết quả phù hợp!
@endif
@endsection