@extends('layouts.accountant.layout') @section('content')

Dashboard

@include('partials.message')

Upcoming Events

@if(count($dashboard['events']) > 0) @foreach($dashboard['events'] as $events)

{{ $events->title }}

{{ date('d M Y H:i',strtotime($events->start_date)) }}

@if($events->select_type == 'class') {{ $events->standardLink->StandardSection }} @else {{ ucwords($events->select_type) }} @endif

{{ $events->description }}

@endforeach @else

No records Found

@endif

Notice Board

@if(count($dashboard['noticeboard']) > 0) @foreach($dashboard['noticeboard'] as $noticeboard)

{{ $noticeboard->title }}

{{ date('d M Y',strtotime($noticeboard->publish_date)) }}

@if($noticeboard->type == 'class') {{ $noticeboard->standardLink->StandardSection }} @else {{ ucwords($noticeboard->type) }} @endif

{!! $noticeboard->description !!}

{{ $noticeboard->created_at->diffForHumans() }}

@if($noticeboard->attachment_file > '') @endif
@endforeach @else

No Notice Found

@endif
@if(config('gfee.enabled', false))

Unpaid Fees List

@endif
@endsection