@extends('layouts.app') @section('title','UAE VAT Working') @section('page_title','UAE VAT Working Report') @section('content')

VAT Working Report

{{ $from }} to {{ $to }} ยท Accountant review required before finalisation.

@include('reports.partials.date-filter')
Output VAT
AED {{ number_format((float)$output,2) }}
Recoverable Input VAT
AED {{ number_format((float)$input,2) }}
Estimated VAT Payable
AED {{ number_format((float)$output-(float)$input,2) }}
Sales VAT
@foreach($sales as $r)@endforeach
Tax CodeCategoryTaxableOutput VAT
{{ $r->code }}{{ $r->category }}{{ number_format((float)$r->taxable,2) }}{{ number_format((float)$r->vat,2) }}
Purchase VAT
@foreach($purchases as $r)@endforeach
Tax CodeTaxableRecoverableNon-Recoverable
{{ $r->code }}{{ number_format((float)$r->taxable,2) }}{{ number_format((float)$r->recoverable_vat,2) }}{{ number_format((float)$r->nonrecoverable_vat,2) }}
@endsection