@extends('pdf.layouts.interior') @section('title','Premium Quotation') @section('content')
| Img | Item | Size | Qty | Rate | Total | ||
|---|---|---|---|---|---|---|---|
|
@if($item->variant && $item->variant->primaryImage)
|
{{ ucfirst($item->category) }} | @if($item->measurement) {{ $item->measurement->width }} x {{ $item->measurement->height }} @else - @endif | {{-- Quantity --}} @if($item->category == 'curtain'){{ $item->quantity }} pcs | @elseif($item->category == 'wallpaper'){{ $item->quantity }} rolls | @else{{ $item->quantity }} | @endif @php $price = (float) ($item->variant?->offer_price ?? 0); $qty = (int) ($item->quantity ?? 1); $total = $price * $qty; @endphp{{ $price > 0 ? number_format($price, 2) : '-' }} | {{ $total > 0 ? number_format($total, 2) : '-' }} |