@extends('layouts.frontend') @section("css") @endsection @section('content') Explore Our Products @foreach($products as $p) @if($p->photos->count() > 0) @else @endif {{ $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 ADD TO CART @else ADD TO CART @endif @endforeach @if($products->hasMorePages()) @endif @endsection @section('scripts') @endsection
Available Units: {{$p->quantity}}
Shipping Cost: ${{$p->shipping_cost}}