@extends('admin.layout.main') @section('title', 'Manajemen-data User') @section('content')
Data User
@foreach ($users as $index => $user) @endforeach
No Username Nama Level Status Aksi
{{ $index + 1 }} {{ $user->username }} {{ $user->nama }} {{ ucfirst($user->level) }} @if ($user->status == '1') Aktif @else Tidak Aktif @endif {{--
@csrf @method('DELETE')
--}}
@endsection