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

{{ $financialYear->financial_year ?? '—' }}

{{ $financialYear->start_date ? \Carbon\Carbon::parse($financialYear->start_date)->format('d-m-Y') : '—' }}

{{ $financialYear->end_date ? \Carbon\Carbon::parse($financialYear->end_date)->format('d-m-Y') : '—' }}

{!! $financialYear->is_current_year == 1 ? 'Yes' : 'No' !!}

@endsection