@if(session('success'))
{{ session('success') }}
@endif
@if(!isset($users) && !isset($user))
Admin Dashboard
@endif
@if(isset($users))
Users List
@if($users->count() == 0)
No users found with the name, username, or email "{{ $query }}" in the database.
@else
| Nama |
Username |
Email |
Aksi |
@foreach($users as $user)
| {{ $user->name }} |
{{ $user->username }} |
{{ $user->email }} |
View Lokasi
|
@endforeach
{{ $users->links() }}
@endif
Back
@endif
@if(isset($user) && isset($lokasiMonitoring))
@if($lokasiMonitoring->isEmpty())
location not found with the name "{{ $query ?? ''}}" for this user.
@else
@foreach($lokasiMonitoring as $lokasi)
Daftar Lokasi
| Lokasi ID |
Nama Lokasi |
Blynk Token |
Edit |
| {{ $lokasi->id }} |
{{ $lokasi->nama_lokasi }} |
{{ $lokasi->blynk_token }} |
|
@endforeach
@endif
Back
@endif
@endsection
@push('styles')
@endpush
@push('scripts')
@endpush