@extends('layouts.app') @section('content')

Financial Year Settings

Back to Settings
@if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')

Current Financial Year

Start Date
{{ \Carbon\Carbon::parse($financialYear->start_date)->format('d-M-Y') }}
End Date
{{ \Carbon\Carbon::parse($financialYear->end_date)->format('d-M-Y') }}
Duration
{{ \Carbon\Carbon::parse($financialYear->start_date)->diffInMonths(\Carbon\Carbon::parse($financialYear->end_date)) }} Months
@error('start_date')
{{ $message }}
@enderror Usually July 1st (Pakistan) or January 1st
@error('end_date')
{{ $message }}
@enderror Usually June 30th (Pakistan) or December 31st
Important:

Changing the financial year dates will affect all reports and trial balance calculations. Make sure to close the current year properly before changing these settings.

Cancel
@endsection