@php $total_registered_students = App\Reports\Registrations::totalCompleteRegistrationsForPeriod('2021-03-15',2021,2); $total_returning_registered_students = App\Reports\Registrations::totalCompleteRegistrationsForPeriod('2021-03-15',2021,2,1); $total_first_time_registered_students = $total_registered_students-$total_returning_registered_students; @endphp
 Registrations created after 2021-03-15 for the year 2021 semester 1  
Total enquiries {{ App\Reports\Registrations::totalForPeriod('2021-03-15',2021,2) }}
Complete Applications {{ App\Reports\Registrations::totalCompleteApplicationsForPeriod('2021-03-15',2021,2) }}
Incomplete Applications {{ App\Reports\Registrations::totalIncompleteApplicationsForPeriod('2021-03-15',2021,2) }}
Declined Applications {{ App\Reports\Registrations::totalDeclinedApplicationsForPeriod('2021-03-15',2021,2) }}
Withdrawn Applications {{ App\Reports\Registrations::totalWithdrawnApplicationsForPeriod('2021-03-15',2021,2) }}
Accepted Students {{ App\Reports\Registrations::totalAcceptedApplicationsForPeriod('2021-03-15',2021,2) }}
Registrations in progress {{ App\Reports\Registrations::totalInProgressRegistrationsForPeriod('2021-03-15',2021,2) }}
First time registrations {{ $total_first_time_registered_students }}
Returning students registered {{ $total_returning_registered_students }}
Total students registered {{ $total_registered_students }}