@extends('adminlayout.dashadmin')
@section('content')
| GSTR Registration : {{Auth::user()->license}} |
| Details Of : B2B Invoices |
| Particulars |
Party Name |
Vch Count |
Taxable amt.(₹) |
IGST |
CGST(₹) |
SGST/UTGST(₹) |
CESS |
Tax amt |
Invoice amt |
@php
$totalVoucher = 0;
$taxableamnt = 0;
$cgstamount = 0;
$sgstamount = 0;
$taxamount = 0;
$invoiceamount = 0;
@endphp
@foreach($selllists as $item)
@php
$totalVoucher += $item->totalvoucher;
$taxableamnt += $item->total_price;
$cgstamount += $item->totalgst/2;
$sgstamount += $item->totalgst/2;
$taxamount += $item->totalgst;
$invoiceamount += $item->grand_total_price;
@endphp
| {{$item->license}} |
{{$item->name}} |
{{$item->totalvoucher}} |
{{ number_format(($item->total_price),2)}} |
- |
{{ number_format(($item->totalgst/2),2)}} |
{{ number_format(($item->totalgst/2),2)}} |
|
{{ number_format(($item->totalgst),2)}} |
{{ number_format(($item->grand_total_price),2)}} |
@endforeach
| Total |
|
{{$totalVoucher}} |
{{ number_format(($taxableamnt),2)}} |
- |
{{ number_format(($cgstamount),2)}} |
{{ number_format(($sgstamount),2)}} |
|
{{ number_format(($taxamount),2)}} |
{{ number_format(($invoiceamount),2)}} |
@endsection