@extends('layouts.app') @section('content')
| Item | Amount |
|---|---|
| Standard Sales | {{ number_format($monthlyFilling->standard_sales) }} |
| Exempted Sales | {{ number_format($monthlyFilling->exempted_sales) }} |
| Zero Rated Sales | {{ number_format($monthlyFilling->zero_rated_sales) }} |
| Deemed Sales | {{ number_format($monthlyFilling->deemed_sales) }} |
| Output VAT | {{ number_format($monthlyFilling->standard_sales * 0.18) }} |
| Standard Purchases | {{ number_format($monthlyFilling->purchases) }} |
| Non VAT Purchases | {{ number_format($monthlyFilling->non_vat_purchases) }} |
| Imports | {{ number_format($monthlyFilling->imports) }} |
| Input VAT | {{ number_format(($monthlyFilling->purchases * 0.18) + ($monthlyFilling->imports * 0.18)) }} | Resultant VAT | {{ number_format(($monthlyFilling->standard_sales * 0.18) - (($monthlyFilling->purchases * 0.18) + ($monthlyFilling->imports * 0.18))) }} |