@extends('frontEnd.layouts.master') @if (Route::is('category')) @section('title', $category->meta_title ?? '') @endif @section('content')

@if (Route::is('category')) {{ $category->name }} @endif

@forelse ($products as $product) @empty

No products available in this category!

@endforelse
{{ $products->links('vendor.pagination.bootstrap-4') }}
@endsection