@extends('layouts.app') @section('title', 'Variation Quotation') @section('css') @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if($variation->status=='accepted') Accepted @elseif($variation->status=='declined') Declined @endif

Variation Quotation

{{$customer->company_name}}
{{$customer->address_1}}
{{$customer->town}}
{{$customer->county}}
{{$customer->postcode}}
@if($variation->sent==1)

Attention: {{ ucwords($contact->name) }}

@endif

Our Ref: WG-{{str_pad($project->id, 4, '0', STR_PAD_LEFT)}}#V-{{ str_pad($variation->id, 4, '0', STR_PAD_LEFT) }}

Your Ref: {{ $project->customer_ref }} - {{ $project->end_customer_name }}

Please find below variation request.

If you can accept or decline the variation as soon as possible, as we have workers on site ready to commence the work

Notes Section:
{{$variation->description}}

Extra Work Required:

@foreach($items as $item) @endforeach
Code Description Qty Sales Rate Sales Gross
{{ $item->code }} {{ $item->description }} {{ $item->quantity }} £{{ number_format($item->sales_price, 2) }} £{{ number_format($item->sales_price*$item->quantity, 2) }}

Your sincerely
{{ $contracts_manager->firstname }} {{ $contracts_manager->lastname }}


Walker Group, Ashlar House, 230 Cumberworth Lane, Denby Dale, Huddersfield HD8 8PR

@if(request()->has('print'))
@else @if($variation->status=='pending')
@endif @endif
@if($variation->status=='pending')
@csrf
@endif
@endsection @section('js') @endsection