@extends('layouts.front-layout') @section('title') All Product @endsection @section('content')
@forelse($products as $product)
Card image

{{$product->product_name ? : ''}}

{!! $product->description ? : ''!!}

Price : ${{$product->price}}
@auth @if($product->user->id === Auth::id()) @else
@csrf
@endif @else Order Now @endauth
@empty

Product Not Found

@endforelse
@endsection