@extends('frontend.main_master') @section('main') @php $name = str_replace('-', ' ', strtolower($name)); @endphp {{ ucwords($name) }} Home {{ ucwords($name) }} @include('frontend.body.sidebar_categories') {{ ucwords($name) }} @if($product_count == 0) Products not found! @endif @foreach($products as $item) @php $product_name = str_replace(' ', '-', strtolower($item->product_name)); @endphp {{ ucwords($item['Category']['category_name']) }} {{ ucwords(strtolower($item->product_name)) }} Read More @endforeach {{ $products->links('vendor.pagination.custom') }} @endsection