@extends('app') @section('content')
Table Users
DataTable Users Tambah User
@foreach ($users as $user) @endforeach
Nama Nomor HP Email Role Foto KTP Status Aksi
{{ $user->nama }} {{ $user->nomor_hp }} {{ $user->email }} {{ ucfirst($user->role) }} @if ($user->is_active == 1) Aktif @else Tidak Aktif @endif Ubah
@csrf @method('delete')
@csrf @method('put')
@endsection