@extends('website.layout.master') @section('title') Shop @endsection @section('content')

Shop

@forelse($products as $product)
{{ $product->category->name }}

{{ $product->name }}

@if(!empty($product->cut_price)) {{ "$".$product->cut_price }} @endif {{ "$".$product->price }}
View Details
@empty

No Products Added.

@endforelse
@if ($products->lastPage() > 1) @if($products->currentPage() == 1) @else @endif @for ($i = 1; $i <= $products->lastPage(); $i++) @if($products->currentPage() == $i) {{ $i }} @else {{ $i }} @endif @endfor @if($products->currentPage() == $products->lastPage()) @else @endif @endif
@endsection @section('script') @endsection