@extends('layouts.app') @section('title', 'Trash Students List') @section('content')
@foreach ($students as $item) @endforeach
# Photo Student ID Name Class Session Group Year Section Roll Date Status Action
{{ $loop->iteration }} @if(optional($item->user)->avatar) @endif {{ optional($item->user)->uid }} {{ optional($item->user)->name }} {{ optional($item->classtype)->name }} {{ optional($item->session)->name }} {{ optional($item->group)->name }} {{ optional($item->classyear)->name }} {{ optional($item->section)->name }} {{ optional($item->user)->roll }} {{ $item->created_at->format('d-m-Y') }}
{{ $item->status }}
Make Active
@endsection @push('delete')
@csrf @method('delete')
@endpush