@extends('pdf.layouts.interior') @section('title','Invoice') @section('content') {{-- HEADER --}}
|
Cusella
Veenalukkal Parappur, po, Kottakkal, Kerala 676503 Contact:094955 92491, 9876543210 |
| Name: {{ $project->client_name }} | Date: {{ now()->format('d-M-Y') }} |
| Contact: {{ $project->client_phone }} | Invoice No: {{ $project->invoice_no }} |
| No | Item | Unit | Qty | Price | Amount | |||||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ ucfirst($item->category) }} | {{ $unit }} | @if($item->is_custom == 0) @if($item->category == 'curtain'){{ $item->quantity }} pcs | @elseif($item->category == 'wallpaper'){{ $item->quantity }} rolls | @else{{ $item->quantity }} | @endif @elseif($item->category == 'curtain' && $item->curtain && $item->measurement) @php $fw = (float) $item->curtain->fabric_width; $ww = (float) $item->measurement->width; $wh = (float) $item->measurement->height; $qty = ($fw > 0) ? ceil($ww / $fw) * $wh : 0; @endphp{{ $qty > 0 ? number_format($qty,2).' m' : '-' }} | @elseif($item->category == 'wallpaper' && $item->wallpaper) @php $rw = (float) $item->wallpaper->roll_width; $rl = (float) $item->wallpaper->roll_length; $ww = (float) $item->wallpaper->wall_width; $wh = (float) $item->wallpaper->wall_height; $rep = (float) ($item->wallpaper->design_repeat ?? 0); $cuttings = ($rw > 0) ? ceil($ww / $rw) : 0; $qty = ($rl > 0) ? ceil(($cuttings * ($wh + $rep)) / $rl) : 0; @endphp{{ $qty > 0 ? $qty.' rolls' : '-' }} | @else- | @endif{{ $price > 0 ? number_format($price,2) : '-' }} | {{ $amount > 0 ? number_format($amount,2) : '-' }} |
| {{ number_format($project->grand_total, 2) }} RUPEES ONLY |
₹ {{ number_format($project->grand_total,2) }}
|