@extends('layouts.frontend') @section('content')
@foreach($product->photos as $index =>$photo) @endforeach
@foreach($product->photos as $index =>$photo)
slide image 1
@endforeach

{{ $product->name }}

${{ $product->price }}

Condition : {{ $product->product_condition }}

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

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

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

@endif @if(!empty($product->dimensions))

Dimensions : {{ $product->dimensions.$product->dimensions_unit }}

@endif @if($product->weight != 0)

Weight : {{ $product->weight.$product->weight_unit }}

@endif @if($product->quantity == 0)
@else
@csrf
@endif

Description

About this item

  • {!! $product->description !!}

Similar Products

@foreach($relatedProducts 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
@endsection