@extends('layouts.frontend') @section('seo') {{ $category->name }} | Product Category @endsection @section('content')

{{ $category->name }}

Home / Shop /

Categories

refine by

Price

@foreach($products as $p)
@if($p->on_sale == 1)
ON SALE
@endif @if($p->is_new == 1)
New
@endif @if($p->photos->count() > 0) @else @endif
${{$p->price}}

{{$p->name}}

@endforeach
{{ $products->links() }}
@endsection