@extends('adminlte::page') @section('title', 'Interest Inventory') @section('content_header')

Interest Inventory

@stop @section('content')

All Records

New
@forelse($records as $record) @empty @endforelse
# Student Date Created By Preview Actions
{{ $loop->iteration + ($records->currentPage()-1) * $records->perPage() }} {{ $record->student?->first_name }} {{ $record->student?->last_name }} {{ $record->date?->format('d/m/Y') ?? '—' }} {{ $record->creator?->name ?? '—' }} {{-- show short preview of q1 --}} {{ \Illuminate\Support\Str::limit($record->q1, 60) }} View Edit
@csrf @method('DELETE')
{{-- optional export button if PDF implemented --}} {{-- Export --}}
No records found.
{{ $records->withQueryString()->links() }}
@stop