@extends('adminlayout.dashadmin')
@section('content')
| GSTR Registration : {{Auth::user()->license}} |
| Sr/No |
Invoice |
Taxable amt. |
CGST |
SGST/UTGST |
Tax amt |
Action |
@php
$i=1;
@endphp
@foreach($salelists as $item )
| {{$i++}} |
{{$item->invoice_number}} |
₹ {{ number_format($item->total_price,2)}} |
₹ {{ number_format(($item->gst/2),2)}} |
₹ {{ number_format(($item->gst/2),2)}} |
₹ {{ number_format(($item->gst),2)}} |
|
@endforeach
@endsection