@extends('layout.app')
@section('title', 'User Hotspot - Sistem Manajemen ISP')
@section('content')
| No | Username | Profile | Status | Expired | MAC Address | Aksi |
|---|---|---|---|---|---|---|
| {{ $users->firstItem() + $index }} |
{{ $user->username }}
|
@if($user->profile) {{ $user->profile }} @else - @endif | @if($user->status == 'Aktif') check_circle Aktif @else cancel Nonaktif @endif |
@if($user->expires_at)
@if($user->expires_at < now() && $user->status == 'Aktif')
{{ $user->expires_at->format('d/m/Y H:i') }}
warning Expired @else {{ $user->expires_at->format('d/m/Y H:i') }} @endif @else - @endif |
@if($user->mac_address)
{{ $user->mac_address }}
@else
-
@endif
|
|