![]() 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/ |
@extends('layouts.front.app',['page_details' => $page_details]) @section('product_details') <meta property="og:type" content="Products"/> <meta property="og:title" content="{{ $page_details->meta_og_title }}"/> <meta property="og:description" content="{{ $page_details->meta_og_description }}"/> @if(!is_null($page_details->meta_og_image)) <meta property="og:image" content="{{ asset("/public/img/images_uploaded/" . $page_details->meta_og_image) }}"/> @endif @endsection @section('content') @include('layouts.front.product-menu') <section class="container content"> <div class="row"> <div class="col-md-12"> <div class="col-md-12 col-sm-12 col-xs-12"> <h1 class="text-center bold">Products</h1> <div class="row"> <div class="col-md-12"> @if($cat4->products->isNotEmpty()) <section class="new-product t100 home"> <div class="container"> @if($cat4->name !== 'Oil') <div class="section-title b50"> <h2 class="product_category_class" >{{ $cat4->name }}</h2> </div> @endif @include('front.products.product-list', ['products' => $cat4->products->where('status', 1)->whereNotIn('brand_id', 1)]) </div> </section> @endif </div> </div> </div> </div> </div> </section> @include('layouts.front.call-to-action-footer') @endsection