@extends('layouts.app') @section('content')
{{ __('SL') }} | {{ __('Product') }} | @if ($businessModel == 'multi'){{ __('Shop') }} | @endif{{ __('Quantity') }} | {{ __('Size') }} | {{ __('Color') }} | {{ __('Price') }} | {{ __('Total') }} |
---|---|---|---|---|---|---|---|
{{ $key + 1 }} |
{{ $product->name }}
|
@if ($businessModel == 'multi')
{{ $product->shop?->name }} | @endif{{ $product->pivot->quantity }} | {{ $product->pivot->size ?? 'N/A' }} | {{ $product->pivot->color ?? '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) }} |