@extends('layouts.app') @section('title', 'GST Returns') @section('breadcrumbs') @endsection @section('content')

GST Returns

Track GSTR-1, GSTR-3B and other GST filings

@php $stats = [['label'=>'Filed This Month','count'=>$stats['filed']??0,'icon'=>'bi-check-circle-fill','color'=>'success'],['label'=>'Pending Filing','count'=>$stats['pending']??0,'icon'=>'bi-clock-history','color':'warning'],['label'=>'GSTR-1','count'=>$stats['gstr1_status']??'Pending','icon'=>'bi-file-earmark-text','color'=>'primary'],['label'=>'GSTR-3B','count'=>$stats['gstr3b_status']??'Pending','icon'=>'bi-file-earmark-text','color':'info']]; @endphp @foreach($stats as $stat)
@endforeach
Return Filing Status
@forelse($returns ?? [] as $r) @empty @endforelse
Return TypePeriodDue DateGross TurnoverTaxable ValueTax AmountStatusActions
{{ $r->return_type ?? 'N/A' }} {{ $r->period ?? 'N/A' }} {{ optional($r->due_date)->format('d M Y') ?? 'N/A' }} {{ number_format($r->gross_turnover ?? 0, 2) }} {{ number_format($r->taxable_value ?? 0, 2) }} {{ number_format($r->tax_amount ?? 0, 2) }} View

No GST returns found

@endsection @push('scripts') @endpush