{{-- Header --}} {{-- Table --}} @if($students->isEmpty())

No students found.

@else
@foreach ($students as $student) @endforeach
Name Email Billing Account Actions
{{ $student->user->first_name }} {{ $student->user->last_name }} {{ $student->user->email }} @if ($student->billingAccount) {{ $student->billingAccount->name }} @else None @endif Edit
@endif