@extends('layouts.admin') {{ config('app.name', 'Laravel') }} | Admin | showkiddie @include('datepicker') @section('main-content')
@if (Session::has('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Records /Study Material

@php $yearRange = session('year_range'); // Example: "2023-2024" $currentDate = now(); [$startYear, $endYear] = explode('-', $yearRange); $startDate = \Carbon\Carbon::create($startYear, 4, 1, 0, 0, 0); // April 1st $endDate = \Carbon\Carbon::create($endYear, 3, 31, 23, 59, 59); // March 31st @endphp @if ($currentDate->between($startDate, $endDate)) @endif
List
{{-- --}} @if (isset($links) && count($links) != 0) @foreach ($links as $key => $link) {{-- --}} {{-- --}} @endforeach @else @endif
S.NoLinkTopic Name class Description Created On Actions
No Link found
@endsection