@inject('carbon', 'Carbon\Carbon') @extends('layouts.app',['dashBoardTitle'=>'ARTICLE 26: Transfers within a qualifying group']) @section('script') @endsection @section('buttons')
@endsection @section('content')
@csrf
Tax relief as per Article 26 (1)
Asset / Liability
Property details
Transferee company
Date of purchase / Date of Creation
Date of transfer
Sale price
Less : Net book value
Gain
Less: Tax relief as per Article 26(1)

Summary of tax relief as per article 26(1)

@php $total = 0; @endphp @forelse($article26 as $article) @php $data = json_decode($article->data); $total += $data->gain ? $data->gain : 0; @endphp @empty @endforelse
Srno Asset /liability Transferee company Date of purchase/ date of creation Date of transfer Sale price Net book value Relief Action
{{@$loop->iteration}} {{@$data->assets_liabilites}} {{@$data->transferee_company}} {{$data->date_of_purchase ? $carbon::parse($data->date_of_purchase)->format('d/m/Y') : "" }} {{$data->date_of_transfer ? $carbon::parse($data->date_of_transfer)->format('d/m/Y') : "" }} {{@$data->sale_price}} {{@$data->less_net_book_value}} {{@$data->gain}}
Total {{$total}}
@endsection