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

{{ __('lng.Student') }} {{ __('lng.Alumni') }}

{{ $Batch->title ?? 'All' }}

{{--
{{ $StudentAlumnies->Student->name }}
--}} {{--
{{ date('F-Y', strtotime($GetMonth)) }}
--}}
@php $si=0; @endphp @foreach ($Students as $Student) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.AdmssionNo') }} {{ __('lng.Course') }} {{ __('lng.Date') }} {{ __('lng.Reson') }}
{{ ++$si }}
{{ $Student->name }}
{{ $Student->admission_no }}
{{ $Student->course_title }}
@if ($Student->date) {{ date_format(date_create($Student->date), 'd-m-Y') }} @endif
{{ $Student->reson }}
{{-- --}}
{{-- --}} @endsection