@extends('layouts.app') @section('content')
@foreach($monthlyFillings as $monthlyFilling) @endforeach
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')
@endsection