@extends('layouts.admissions') @section('content')
{{csrf_field()}} @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('status'))
{{session('status')}}
@endif
@if(count($details) > 0)

Actions

@foreach($details as $d) @endforeach
# ActionName Added Updated
{{$c++}} {{$d->action}} {{$d->created_at}} {{$d->updated_at}}
@else
No available student actions
@endif
@stop