@extends('layouts.master') @section('page_title', 'Accounting Periods') @section('content')
Accounting Periods
New Period
@forelse($periods as $period) @empty @endforelse
Name Start End Status Current Actions
{{ $period->name }} {{ $period->start_date->format('Y-m-d') }} {{ $period->end_date->format('Y-m-d') }} {{ $period->status }} {{ $period->is_current ? 'Yes' : 'No' }} View Edit
No periods found.
{{ $periods->links() }}
@endsection