@php $db_settings = \App\Models\Setting::get(); $settings = []; foreach ($db_settings as $row) { $settings[$row->name] = $row->value; } @endphp
{{ $settings['address'] ?? '' }}
{{ $settings['number_1'] ?? '' }}{{ $settings['number_2'] ? ', ' . $settings['number_2'] : '' }}
| # | Product | Quantity | Amount | Sub Total |
|---|---|---|---|---|
| {{ $counter++ }} | {{ $rw?->prd?->name }} | {{ $rw?->quantity }} | {{ number_format($rw?->unit_price, 2) }} | {{ number_format($rw?->unit_price * $rw?->quantity, 2) }} | @php $total += (float) $rw?->unit_price * $rw?->quantity; @endphp
| Total | {{ number_format($total, 2) }} | |||