![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/resources/views/front/categories/ |
@extends('layouts.front.app') @section('product_info') <title>{{ $category->name }} | {{ config('app.name') }}</title> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="description" content="{{ $category->description }}" /> <meta name="keyword" content="{{ strtolower($category->name) }}" /> <meta property="og:type" content="product" /> <meta property="og:title" content="{{ $category->name }}" /> <meta property="og:description" content="{{ $category->description }}" /> @if(!empty($category->cover))<meta property="og:image" content="{{ asset("storage/$category->cover") }}" />@endif <meta name="robots" content="index,follow" /> @endsection @section('content') @include('layouts.front.product-menu') <div class="container"> <div class="row"> <div class="col-md-12"> <div class="box-body"> @include('layouts.errors-and-messages') </div> </div> <div class="category-top col-md-12"> <h2>{{ $category->name }}</h2> {{-- $category->description --}} </div> </div> <div class="col-md-12"> <div class="row"> @include('front.products.category-product-list', ['products' => $products]) </div> </div> </div> @include('layouts.front.call-to-action-footer') @endsection