@extends('layouts.app') @section('content')
Customer | Month | Purchases | Sales | Resultant VAT | User | Actions |
---|---|---|---|---|---|---|
{{$monthlyFilling?->customer?->name ?: "(blank)"}} | {{ date('M-Y', strtotime($monthlyFilling->month)) ?: "0" }} | {{ number_format($monthlyFilling->purchases) ?: "0" }} | {{ number_format($monthlyFilling->gross_sales) ?: "0" }} | {{ number_format($monthlyFilling->output_vat) ?: "0" }} | {{ $monthlyFilling->user->name }} |
@lang('Show')
|