@extends('layouts.frontend') @section("css") @endsection @section('content')

Explore Our Products

@foreach($products as $p)

{{ $p->name }}

${{ $p->price }}

@if($p->orignal_price)

${{ $p->orignal_price }}

@endif

Available Units: {{$p->quantity}}

@if($p->shipping_cost != 0)

Shipping Cost: ${{$p->shipping_cost}}

@else


@endif
@if($p->quantity > 0)
@csrf
@else @endif
@endforeach
@if($products->hasMorePages()) @endif
@endsection @section('scripts') @endsection