@extends('shop.skele') @section('shop_title') Shop @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
@foreach($products as $product)
@if($product->on_promotion) ${{$product->price}} ${{$product->discounted_price}} @else ${{$product->price}} @endif
{{$product->name}}

{!! $product->description !!}

@endforeach
{{ $products->links('shop.partials.pagination') }}
@endsection