@extends('layouts.report') @section('content') @if(isset($vatReturn) && isset($vatReturn->VRN))
{{$vatReturn->user ? $vatReturn->user->name: ''}} VAT: {{$vatReturn->VRN}}
Vat Return for the period @date($vatReturn->start) - @date($vatReturn->end) @if(empty($vatReturn->is_submitted) || !$vatReturn->is_submitted) (not yet filed) for preview @endif
Business details
VAT number {{$vatReturn->VRN}}
Business name {{$vatReturn->business->name}}
Business address {{$vatReturn->business->address}}
{{--VAT period--}} @if($vatReturn->is_submitted) @endif
VAT period
Date from @date($vatReturn->start)
Date to @date($vatReturn->end)
Due date @date($vatReturn->due)
Submitted date @dateTime($vatReturn->submitted_date)
Net VAT to pay @currency($vatReturn->VAT5)
{{--VAT return figures--}}
VAT return figures
1 VAT due in this period on sales and other outputs @currency($vatReturn->VAT1)
2 VAT due in this period on acquisitions from other EC Member States @currency($vatReturn->VAT2)
3 Total VAT due (the sum of boxes 1 and 2) @currency($vatReturn->VAT3)
4 VAT reclaimed in this period on purchases and other inputs (including acquisitions from the EC) @currency($vatReturn->VAT4)
5 Net VAT to be paid to Customs or reclaimed by you (Difference between boxes 3 and 4) @currency($vatReturn->VAT5)
6 Total value of sales and all other outputs excluding any VAT. Include your box 8 figure @currency($vatReturn->VAT6)
7 Total value of purchases and all other inputs excluding any VAT. Include your box 9 figure. @currency($vatReturn->VAT7)
8 Total value of all supplies of goods and related costs, excluding any VAT, to other EC Member States @currency($vatReturn->VAT8)
9 Total value of acquisitions of goods and related costs excluding any VAT, from other EC Member States @currency($vatReturn->VAT9)
@if($vatReturn->is_submitted) {{--VAT return figures--}} @if(isset($vatReturn->processing_date)) @endif @if(isset($vatReturn->payment_indicator)) @endif @if(isset($vatReturn->form_bundle_number)) @endif @if(isset($vatReturn->charge_ref_number)) @endif @endif
HMRC Response
Processing Date {{ $vatReturn->processing_date }}
Payment Indicator {{ $vatReturn->payment_indicator }}
Form Bundle Number {{ $vatReturn->form_bundle_number }}
Charge Ref Number {{ $vatReturn->charge_ref_number }}
@endif @stop