{{ $financialYear->display_name }} - {{ trans('dashboard/financial_year.months') }}
@foreach($months as $month) @endforeach
{{ trans('dashboard/financial_year.month_name') }} {{ trans('dashboard/financial_year.start_date') }} {{ trans('dashboard/financial_year.end_date') }} {{ trans('dashboard/financial_year.status') }} {{ trans('dashboard/financial_year.added_by') }} {{ trans('dashboard/financial_year.updated_by') }}
{{ $month->name }} {{ $month->start_date->format('d-m-Y') }} {{ $month->end_date->format('d-m-Y') }} @if($month->is_closed) {{ trans('dashboard/general.close') }} @else {{ trans('dashboard/general.open') }} @endif @if($month->addedBy) {{ $month->addedBy->name }} @else {{ trans('dashboard/general.not_added') }} @endif @if($month->updatedBy) {{ $month->updatedBy->name }} @else {{ trans('dashboard/general.not_updated') }} @endif