{{ $business_name }}
{{ $user_name }}
Phone: {{ $user_mobile }}
Email: {{ $user_email }}
Invoice
invoice : {{ $invoice_number_display }}
Date: {{ \Carbon\Carbon::parse($created_at)->format('M d, Y') }}
Bill To:
{{ $customer_name }}
{!! $customer_address !!}
Phone: {{ $customer_mobile }}
@if (!empty($customer_email)) Email: {{ $customer_email }} @endif
@if (!empty($interior_designer_name))
Interior Designer:
{{ $interior_designer_name }}
Phone: {{ $interior_designer_mobile }}
@if (!empty($interior_designer_email)) Email: {{ $interior_designer_email }} @endif
@endif
@php $total = 0; $sr = 1; @endphp @if (!empty($sections) && count($sections) > 0) @foreach ($sections as $section) @if (!empty($section->items) && count($section->items) > 0) @foreach ($section->items as $idx => $item) @endif @php $total += $item->total; $sr += 1; @endphp @endforeach @if (!empty($sections) && count($sections) > 1) @endif @else @endif @endforeach @else @endif
# Item Name Unit Dimensions Qty Unit Price Amount
{{ $section->title }}
{{ $sr }} {{ $item->item_name }}
{!! nl2br($item->description) !!}
{{ $item->unit_type }} @php $dimensions = []; if (!empty($item->length_value) && !empty($item->length_unit)) { $dimensions[] = "({$item->length_value} {$item->length_unit})"; } if (!empty($item->width_value) && !empty($item->width_unit)) { $dimensions[] = "({$item->width_value} {$item->width_unit})"; } if (!empty($item->height_value) && !empty($item->height_unit)) { $dimensions[] = "({$item->height_value} {$item->height_unit})"; } @endphp @if (empty($dimensions)) - @else {{ implode('×', $dimensions) }}< {{ $item->quantity }} {{ money($item->unit_price) }} {{ money($item->total) }}
Total {{ money(collect($section->items)->sum('total')) }}
No Items
No Data Found
Subtotal: {{ money($total) }}
Total: {{ money($total) }}
UNIT
RFT=RUNNING FOOT     SQFT=SQUARE FOOT     PCS=PEACE     KG=KILOGRAM    
@if (!empty($notes))
NOTES
{!! nl2br($notes) !!}
@endif