@extends('layouts.app') @section('content')
{{ __('SL') }} | {{ __('Product') }} | {{ __('Quantity') }} | {{ __('Size') }} | {{ __('Color') }} | {{ __('Price') }} | {{ __('Total') }} |
---|---|---|---|---|---|---|
{{ $key + 1 }} |
{{ ucfirst($product->name) }}
@if ($product->pivot->is_gift)
@endif
|
{{ $product->pivot->quantity }} | {{ $product->pivot->color ?? 'N/A' }} | {{ $product->pivot->size ?? 'N/A' }} | @php $price = $product->pivot->price > 0 ? $product->pivot->price : ($product->discount_price > 0 ? $product->discount_price : $product->price); @endphp {{ showCurrency($price) }} | {{ showCurrency($product->pivot->quantity * $price) }} |