@extends('front.layouts.master') @section('content')
{{-- --}} @if(count($products) > 0) @foreach($products as $product)
Product Image
{{ $product->name }}({{ $product->category }})
{{--

{{ $product->category }}

--}}

Price: ${{ $product->price }}

@endforeach @else

No result Found

@endif
@endsection @section('scripts') @endsection