@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))}}
@csrf
Company name
CT TRN
Losses Amount (transferror company)
Taxable Income (transferee company)
75% of Taxable Income
Set off in current tax period
@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 @endforeach @endif
Company name CT TRN Losses Amount (transferror company) Taxable Income (transferee company) 75% of Taxable Income Set off in current tax period* Action
{{$data->company_name}} {{$data->ct_trn}} {{$data->loss_amount}} {{$data->taxable_income}} {{$data->taxable_income_75}} {{$data->set_off_in_current_tax_period}}
Total {{$totalLossReceived}}
@endsection