@extends('frontend.layouts.master') @section('css') @section('meta') @if ($product->meta_description) @endif @if ($product->meta_keywords) @endif @if ($product->meta_title) @endif @if ($product->meta_image) @endif @endsection @endsection @section('content') @php $cart = null; if (session()->has('cart_identifier')) { $cart = \App\Models\Cart::where('cart_identifier', session()->get('cart_identifier'))->first(); } $cartItems = $cart ? $cart->cartItems()->with('product')->get() : []; @endphp
@if ($product->productImages->count() > 0) @foreach ($product->productImages as $image)
@endforeach @else
@endif
@if ($product->productImages->count() > 0) @foreach ($product->productImages as $image)
@endforeach @else
@endif
{{ ucwords($product->category->name) }} @if ($product->is_refundable) Refundable @endif

{{ $product->name }}

Price: @php // $discount = \App\Helpers\ProductsHelper::getProductPrice($product, true); $orignalPrice = \App\Helpers\ProductsHelper::getProductPrice($product); $show_price = get_setting('show_price'); @endphp @if (isCustomer() || $show_price == '1') £{{ $orignalPrice }} @if (!empty($product->off_price) && $product->off_price > $orignalPrice) £{{ $product->off_price }} @endif @else Login to see price @endif {{-- @if (isCustomer()) @if (!empty($discount) && $discount != $orignalPrice) £{{ $discount }} £{{ $orignalPrice }}26% Off @else £{{ $orignalPrice }} @endif @else @if ($show_price) @if (!empty($discount) && $discount != $orignalPrice) £{{ $discount }} £{{ $orignalPrice }}26% Off @else £{{ $orignalPrice }} @endif @else Login to see price @endif @endif --}}

{{ $product->short_description }}
@if ($product->specification) @endif {{-- --}}
@if ($product->minimum_purchase_quantity > $product->quantity) @else
@php $isExist = false; if (count($cartItems) > 0) { $isExist = $cartItems->where('product_id', $product->id)->first(); $qty = $isExist ? $isExist->quantity : 1; } @endphp @if (!$isExist) @php $show_purchase_note = get_setting('show_purchase_note'); @endphp {{-- @if (auth()->check() && auth()->user()->status === 'pending') Your Status is Pending @elseif(auth()->check() && auth()->user()->status === 'blocked') You are Blocked @else --}} @if ($show_purchase_note == '1' && !empty($product->purchase_note)) Add to cart @else Add to cart
@endif {{-- @endif --}} @else Add to cart
@endif
@endif
{{-- --}} @if ($product->weight) @endif {{-- --}}
Product SKU: {{ $product->sku }}
Brand: {{ $product->brand->name }}
Unit: {{ $product->unit->name }}
Weight: {{ $product->weight }} {{ $product->unit->name }}
Availability: @if ($product->minimum_purchase_quantity > $product->quantity) Out of Stock @else In Stock @endif
Type: Fruits
Shipping: 01 day shipping.( Free pickup today)
@include('frontend.partials.purchase-note-modal', $product)

Short Description:

{!! $product->short_description !!}

Long Description:

{!! $product->long_description !!}
@if ($product->productAttributes->count() > 0)

Attributes

@foreach ($product->productAttributes as $attribute) @endforeach
{{ $attribute->title }} {{ $attribute->value }}
@endif @if ($product->is_wholesale)

Wholesale Prices

@php $wholesalePrices = \App\Helpers\ProductsHelper::getWholeSalePrices( $product, ); @endphp @foreach ($wholesalePrices as $wprice) @endforeach
Min Qty Max Qty Unit Price
{{ $wprice->min_quantity }} {{ $wprice->max_quantity }} £{{ $wprice->price_per_unit }}
@endif

External Information

@if ($product->qrcode) @endif @if ($product->external_link && $product->external_link_button_name) @endif @if ($product->pdf_specification) @endif @if ($product->video_link) @endif
Qr Code {{ $product->qrcode }}
External Link {{ $product->external_link_button_name }}
PDF Specification Download
Video Link ($product->video_provider) Watch

Customer reviews

4.1 out of 511,130 global ratings
5
53%
4
22%
3
14%
2
5%
1
7%

Review this product

Share your thoughts with other customers.

Write the Review

Reviews

Shankar Subbaraman

30 December 2022 Verified Purchase

Need to recheck the weight at delivery point

Product quality is good. But, weight seemed less than 1kg. Since it is being sent in open package, there is a possibility of pilferage in between. FreshCart sends the veggies and fruits through sealed plastic covers and Barcode on the weight etc. .

Robert Thomas

29 December 2022 Verified Purchase

Need to recheck the weight at delivery point

Product quality is good. But, weight seemed less than 1kg. Since it is being sent in open package, there is a possibility of pilferage in between. FreshCart sends the veggies and fruits through sealed plastic covers and Barcode on the weight etc. .

Barbara Tay

28 December 2022 Unverified Purchase

Need to recheck the weight at delivery point

Everytime i ordered from fresh i got greenish yellow bananas just like i wanted so go for it , its happens very rare that u get over riped ones.

Sandra Langevin

8 December 2022 Unverified Purchase

Great product

Great product & package. Delivery can be expedited.

Create Review

Overall rating

Rate Features

Flavor
Value for money
Scent
Add a headline
Add a photo or video

Shoppers find images and videos more helpful than text alone.

Add a written review
...

Related Items

@if ($related_products->count() > 0) @foreach ($related_products as $product) @include('frontend.partials.prodcut', $product) @endforeach @else
No related products found
@endif
@include('frontend.partials.product-script') @endsection @section('scripts') @endsection