@extends('layouts.cork') @section('title', $title) @section('page-css') @endsection @section('breadcrumb')
@endsection @section('content')
Date Range Filter
Reset
Showing enrollments created or updated between {{ date('M j, Y', strtotime($startDate)) }} and {{ date('M j, Y', strtotime($endDate)) }}
@csrf @foreach ($enrollments as $e) @php $e = App\Models\Enrollment::find($e->id) @endphp @if ($e->student->ssid == 0) @continue @endif @endforeach
Date Status Middle_name Gender Grade_level Last_name First_name DOB State_studentnumber student_number
{{ date('m/d/Y H:i:s', strtotime($e->updated_at > $e->created_at ? $e->updated_at : $e->created_at)) }} @if ($e->status == 'R' || $e->status == 'D') {{ $e->statusDesc() }} @elseif($e->status == 'W') {{ $e->statusDesc() }} @else {{ $e->statusDesc() }} @endif {{ $e->student->school->name }} {{ $e->student->gender }} {{ $e->student->grade }} {{ $e->student->last_name }} {{ $e->student->first_name }} {{ date('m/d/Y', strtotime($e->student->dob)) }} {{ $e->student->ssid }} {{ $e->student->ssid }}
@endsection @section('page-js') @endsection