@extends('layouts.app') @section('title', 'Accounting Periods') @section('content')
| Period | Start Date | End Date | Status | Closed By | Closed At | Actions |
|---|---|---|---|---|---|---|
| {{ $period->period_name }} | {{ $period->start_date->format('d M Y') }} | {{ $period->end_date->format('d M Y') }} | {{ ucfirst($period->status) }} | {{ $period->closedByUser->name ?? '—' }} | {{ $period->closed_at ? $period->closed_at->format('d M Y H:i') : '—' }} |
@if ($period->isOpen())
@elseif ($period->isClosed())
{{-- Reopen Modal --}}
|
| No accounting periods defined. | ||||||