@extends('layout.layout') @php $title = 'Data Petugas'; $subTitle = 'Manajemen Petugas Pamsimas'; $script = ''; @endphp @section('content')
Daftar Petugas Lapangan
{{-- TOMBOL TAMBAH PETUGAS --}} Tambah Petugas
@forelse($data as $index => $user) @empty @endforelse
No. Nama Petugas Email (Username) No. Telp Status Aksi
{{ $data->firstItem() + $index }} {{ $user->name }} {{ $user->email }} {{ $user->profile->phone_number ?? '-' }} @if($user->status == 'aktif') Aktif @else Nonaktif @endif
Belum ada petugas.
{{ $data->links() }}
@endsection