@extends('adminlte::page') @section('title', 'Counseling Intake Forms') @section('content_header')

Counseling Intake Forms

@stop @section('content')

All Counseling Intake Forms

New Intake Form
{{-- Search Form --}}
{{-- Table --}}
@forelse ($forms as $index => $form) @empty @endforelse
# Student Gender Age Stream Education Program General Performance Date Added Actions
{{ $forms->firstItem() + $index }} {{ $form->student->first_name ?? '' }} {{ $form->student->last_name ?? '' }} {{ $form->gender ?? '-' }} {{ $form->age ?? '-' }} {{ $form->stream ?? '-' }} {{ $form->education_program ?? '-' }} {{ $form->g_performance ?? '-' }} {{ $form->created_at->format('d M, Y') }}
@csrf @method('DELETE')
No counseling intake forms found.
{{-- Pagination --}}
{{ $forms->withQueryString()->links() }}
@stop