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

Search Results

{{--
--}} {{-- Price: --}} {{-- Low to High |--}} {{-- High to Low--}} {{--
--}}
@forelse ($products as $product)
product
{{ $product->product_name }}
{{ $product->product_current_price }}
@empty
No items found
@endforelse
{{ $products->appends(request()->input())->links() }}
@endsection @section('extra-js') {{-- --}} @endsection