@extends('layouts.app') @section('title', 'GST Returns') @section('page-title', 'GST Returns') @section('content')
G1

GSTR-1

Outward supplies — monthly/quarterly

3B

GSTR-3B

Monthly summary return with ITC

Return Filing History

@forelse($gstReturns as $ret) @empty @endforelse
Return Type Period FY Taxable Turnover Net Tax Status Filed On
{{ $ret->return_type }} {{ $ret->period }} {{ $ret->financial_year }} ₹{{ number_format($ret->taxable_turnover, 2) }} ₹{{ number_format($ret->net_tax_payable, 2) }} {{ ucfirst($ret->status) }} {{ $ret->filed_at ? $ret->filed_at->format('d M Y') : '—' }}
No GST returns filed yet.
@if($gstReturns->hasPages())
{{ $gstReturns->links() }}
@endif
@endsection