@extends('admin.layout') @section('title', 'Detail Surveyor - ' . $surveyor->Nama) @section('page-title', 'Detail Surveyor: ' . $surveyor->Nama) @section('page-subtitle', 'Daftar alumni yang disurvey oleh ' . $surveyor->Nama) @section('content')

{{ $surveyor->Nama }}

{{ $surveyor->Username }}
{{ $surveyor->Email ?? '-' }}
{{ $surveyor->Telp ?? '-' }}

Total Survey

{{ $totalAlumni }}

entries
Reset
@forelse($alumnis as $index => $alumni)
#{{ $alumnis->firstItem() + $index }} · {{ $alumni->NoMhsw }}
{{ $alumni->Nama }}
{{ $alumni->prodi_name }}
{{ $alumni->TahunLulus }}

Telepon

{{ $alumni->Telp ?? '-' }}

Tgl Input

{{ $alumni->TanggalBuat ? \Carbon\Carbon::parse($alumni->TanggalBuat)->format('d/m/Y') : '-' }}

Email

{{ $alumni->Email ?? '-' }}

@empty
Tidak ada data ditemukan
@endforelse
Showing {{ $alumnis->firstItem() ?? 0 }} to {{ $alumnis->lastItem() ?? 0 }} of {{ $alumnis->total() }} entries
{{ $alumnis->appends(request()->query())->links() }}
@endsection @push('styles') @endpush