@extends('front.layout.app') @section('title', 'Products') @section('content')
Home Shop @if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif @if(count($errors) > 0)
@endif

All Products

Price: Low to High | High to Low
{{ $products->appends(request()->input())->links() }}
@endsection @section('extra-js') {{-- --}} @endsection