@extends('layouts.app') @section('title', 'Period Closing') @section('breadcrumb')
QuickBooks-style year-end closing — no closing journal entries required
Set the date through which your books are closed. Transactions dated on or before this date cannot be added or changed unless the closing password is entered — just like QuickBooks.
@if(auth()->user()->hasPermission('settings','edit')) @else| Period | Start Date | End Date | Status | Actions |
|---|---|---|---|---|
| {{ $fy->name }} @if($fy->is_current) Current @endif | {{ $fy->start_date->format('d M Y') }} | {{ $fy->end_date->format('d M Y') }} | @php $statusStyles = ['open'=>'#d1e7dd|#0a3622','locked'=>'#f8d7da|#842029','closed'=>'#e9ecef|#495057']; [$bg,$fg] = explode('|', $statusStyles[$fy->status] ?? '#e9ecef|#495057'); @endphp {{ $fy->status === 'locked' ? 'Closed' : ucfirst($fy->status) }} | @if($fy->status !== 'locked' && auth()->user()->hasPermission('settings','edit')) @endif |
| No periods yet. They appear automatically when you post your first transaction. | ||||