@extends('adminlte::page') @section('title', 'Academic Sessions') @section('content_header')

Academic Sessions

@stop @section('content') @if(session('success')) @endif

Sessions List

Add Session
@forelse($sessions as $session) @empty @endforelse
# Name Start Date End Date Current Actions
{{ $loop->iteration + ($sessions->currentPage()-1)*$sessions->perPage() }} {{ $session->name }} {{ optional($session->start_date)->format('d-m-Y') }} {{ optional($session->end_date)->format('d-m-Y') }} @if($session->is_current) Yes @else No @endif
@csrf @method('DELETE')
No sessions found.
@stop