@extends('frontend.main_master') @section('main')
@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
product-img
{{ ucwords($item['Category']['category_name']) }}
@endforeach
{{ $products->links('vendor.pagination.custom') }}
@endsection