@extends('shop.skele') @section('shop_title') {{$categoryInfo->category}} Products @endsection @section('shop_content')
There Are {{$products->count()}} Products.
{{--
Sort By:
--}}
@foreach($products as $product)
@if($product->on_promotion) ${{$product->price}} ${{$product->discounted_price}} @else ${{$product->price}} @endif
{{$product->name}}
@endforeach
{{ $products->links('shop.partials.pagination') }}
@endsection