@extends('layouts.app',['dashBoardTitle'=>'LOSSES RECEIVED'])
@section('script')
@endsection
@section('buttons')
@endsection
@section('content')
Losses received from group companies
{{strtoUpper($trialBalanceDetails->companyRelationShip->taxpayer)}}
|
T.R.NO : {{($trialBalanceDetails->companyRelationShip->tax_registration_number)}}
|
Tax Period:
{{date('d-M-Y',strtotime(@$trialBalanceDetails->from))}}
to
{{date('d-M-Y',strtotime(@$trialBalanceDetails->to))}}
|
Company name |
CT TRN |
Losses Amount (transferror company) |
Taxable Income (transferee company) |
75% of Taxable Income |
Set off in current tax period* |
Action |
@php
$totalLossReceived = 0;
@endphp
@if(count($lossReceiveds) > 0)
@foreach($lossReceiveds as $lossReceived)
@php
$data = json_decode($lossReceived->data);
$totalLossReceived += $data->set_off_in_current_tax_period;
@endphp
{{$data->company_name}} |
{{$data->ct_trn}} |
{{$data->loss_amount}} |
{{$data->taxable_income}} |
{{$data->taxable_income_75}} |
{{$data->set_off_in_current_tax_period}} |
|
@endforeach
@endif
Total |
|
|
|
|
{{$totalLossReceived}} |
|
@endsection