Description |
|
Disallowance |
Action |
Donation, grants or gifts to non-public benefit entities |
|
|
|
@php
$donationsCount = 0;
@endphp
@foreach($donations as $donation)
@php
$data = json_decode($donation->data);
$donationsCount += $data->value;
@endphp
@if(empty($donation->deleted_at))
{{$data->description}} |
{{number_format($data->value,2)}} |
@if($loop->last)
{{number_format($donationsCount,2)}}
@endif
|
|
@endif
@endforeach
Fines & Penalties |
|
|
|
@php
$fineCount = 0;
@endphp
@foreach($panelties as $panelty)
@php
$data = json_decode($panelty->data);
$fineCount += $data->value;
@endphp
@if(empty($panelty->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($fineCount,2)}}
@endif
|
|
@endif
@endforeach
Bribes and illicit payment
|
|
|
|
@php
$bribeCount = 0;
@endphp
@foreach($bribes as $bribe)
@php
$data = json_decode($bribe->data);
$bribeCount += $data->value;
@endphp
@if(empty($bribe->deleted_at))
{{$data->description}} |
{{$data->value}} |
{{number_format($bribeCount,2)}} |
|
@endif
@endforeach
Dividend,profit distribution paid to an owner |
|
|
|
@php
$dividendCount = 0;
@endphp
@foreach($dividends as $dividend)
@php
$data = json_decode($dividend->data);
$dividendCount += $data->value;
@endphp
@if(empty($dividend->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($dividendCount,2)}}
@endif
|
|
@endif
@endforeach
Amount withdrawan by a natural person |
|
|
|
@php
$amount_withdrawanCount = 0;
@endphp
@foreach($amount_withdrawans as $amount_withdrawan)
@php
$data = json_decode($amount_withdrawan->data);
$amount_withdrawanCount += $data->value;
@endphp@if(empty($amount_withdrawan->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($amount_withdrawanCount,2)}}
@endif
|
|
@endif
@endforeach
Corporate taxes paid
|
|
|
|
@php
$corporate_taxCount = 0;
@endphp
@foreach($corporate_taxs as $corporate_tax)
@php
$data = json_decode($corporate_tax->data);
$corporate_taxCount += $data->value;
@endphp
@if(empty($corporate_tax->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($corporate_taxCount,2)}}
@endif
|
|
@endif
@endforeach
Recoverable VAT
|
|
|
|
@php
$recoverableConut = 0;
@endphp
@foreach($recoverables as $recoverable)
@php
$data = json_decode($recoverable->data);
$recoverableConut += $data->value;
@endphp
@if(empty($recoverable->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($recoverableConut,2)}}
@endif
|
|
@endif
@endforeach
Foreign taxes paid
|
|
|
|
@php
$foreign_taxConut = 0;
@endphp
@foreach($foreign_taxs as $foreign_tax)
@php
$data = json_decode($foreign_tax->data);
$foreign_taxConut += $data->value;
@endphp
@if(empty($foreign_tax->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($foreign_taxConut,2)}}
@endif
|
|
@endif
@endforeach
Any other expenditure |
|
|
|
@php
$other_expConut = 0;
@endphp
@foreach($other_exps as $other_exp)
@php
$data = json_decode($other_exp->data);
$other_expConut += $data->value;
@endphp
@if(empty($other_exp->deleted_at))
{{$data->description}} |
{{$data->value}} |
@if($loop->last)
{{number_format($other_expConut,2)}}
@endif
|
|
@endif
@endforeach
Total disallowance
|
|
|
{{number_format($other_expConut+$foreign_taxConut+$recoverableConut+$corporate_taxCount+$amount_withdrawanCount+$dividendCount+$bribeCount+$fineCount+$donationsCount,2)}} |