@extends('layouts.master') @section('content')

@lang('crud.detail') @lang('models/quotations.singular')

Quotation

Client: {{$quotation->company->name}}
Project: {{$quotation->quotation_type->name}}
Location: {{$quotation->location}}
Subject: {{$quotation->subject}}
Date: {{$quotation->date}}
Refno:  Q-00{{$quotation->id}}
@foreach($quotation->products as $index => $product) @endforeach
SR No. Description QTY Unit Total
{{ $index + 1 }} {{ $product->product->name }} {{ $product->quantity }} {{ $product->unit_price }} {{ $product->total_price }}
Net Amount {{ $quotation->products->sum('total_price') }}
VAT (5%) {{ $quotation->products->sum('total_price') * 0.05 }}
Total Amount {{ $quotation->products->sum('total_price') * 1.05 }}
Payment:
{!! $quotation->payment !!}
Exclusion:
{!! $quotation->exclusion !!}
NOTE: Approving the below table with a Signature & Stamp shall be considered as official approval of the above quote in line with Commercial, Technical Terms & Conditions & Payment Terms.
FOR CLIENT APPROVAL
Quotation No:
Name:
Position:
Sign: Stamp:
Date:
@include('components.model_files',['model' => $quotation ])
@endsection