@extends('layouts.nav') @section('title') Tax Report @endsection @section('content')
![]() {{$name}} Statement |
|
Currency: {{$currnames}} From: {{$from}} To: {{$to}} |
|
Description | EntryDate | Amount | Tax % | Tax Amount | ||||||||
{{$tran->Narration}} | {{$tran->EntryDate}} | {{(($tran->Price * $tran->Qnty)-(($tran->Price * ($tran->Discount / 100)) * $tran->Qnty))}} | {{$tran->Tax}} | @php $b = $b+ (($tran->Qnty * ($tran->Price - ($tran->Price * ($tran->Discount / 100)))) * ($tran->Tax / 100)); @endphp{{number_format( (($tran->Qnty * ($tran->Price - ($tran->Price * ($tran->Discount / 100)))) * ($tran->Tax / 100)),2) }} | ||||||||
|