@extends('pdf.layouts.interior') @section('title','Premium Quotation') @section('content')
Room Wise Quotation
@foreach($project->areas as $area)

{{ $area->area_name }}

@foreach($area->items as $item) @endforeach
Img Item Fabric Size Qty Rate Total
@if($item->image) @endif {{ ucfirst($item->category) }} @if($item->fabric_image) @endif {{ $item->measurement->width }} x {{ $item->measurement->height }} {{ $item->qty }} {{ number_format($item->rate,2) }} {{ number_format($item->total,2) }}
@endforeach
Subtotal : {{ number_format($project->subtotal,2) }}
GST : {{ number_format($project->tax,2) }}
Grand Total : {{ number_format($project->grand_total,2) }}
Terms & Conditions
{!! $project->terms !!}
@endsection