| Student Identity | Contact Info | Maritime IDs | Location | Status | Actions |
|---|---|---|---|---|---|
|
{{ $student->name }}
{{ $student->student_code }}
|
{{-- Contact Info --}}
{{ $student->email }}
{{ $student->phone ?? 'N/A' }}
|
{{-- Maritime IDs --}}
@if ($student->indos_no)
IND: {{ $student->indos_no }}
@endif
@if ($student->cdc_no)
CDC: {{ $student->cdc_no }}
@endif
@if (!$student->indos_no && !$student->cdc_no)
-
@endif
|
{{-- Location --}}
@if ($student->city || $student->country)
{{ $student->city }}
{{ $student->country }}
@else
-
@endif
|
{{-- Status --}}
@if ($student->is_active) Active @else Inactive @endif | {{-- Actions --}}|
No students foundTry adjusting your filters or search query. |
|||||