Location |
SGST |
CGST |
IGST |
VAT |
Created On |
|
@if ($billings->count() == 0)
No Billing found |
@else
@foreach ($billings as $billing)
@php
$locationLabel = App\Models\Billing::LOCATION_LABELS[$billing->location_id];
@endphp
{{ $locationLabel }} |
{{ $billing->sgst != 0 ? $billing->sgst.'%' : '' }} |
{{ $billing->cgst != 0 ? $billing->cgst.'%' : '' ?? '' }} |
{{ $billing->igst != 0 ? $billing->igst.'%' : '' }} |
{{ $billing->vat != 0 ? $billing->vat.'%' : '' }} |
{{ $billing->created_at }} |
@if ($canEdit)
@endif
@if ($canDelete)
@endif
|
@endforeach
@endif