@extends('layouts.master') @section('page') {{$category->title}} | {{setting('site.title')}} @endsection @section('content')
@if($category->products->count() > 0) @foreach ($category->products as $product)
@if ($product->on_sale) Sale @endif {{$product->name}}
@if ($product->on_sale)
$ {{$product->price}}
$ {{$product->on_sale}}
@else
$ {{$product->price}}
@endif
@endforeach @else

No products in {{$category->title}} category

@endif
Product Categories
@endsection @push('styles') @endpush @push('scripts') @endpush