@php $faviconPath = public_path('favicon.ico'); // or change to 'favicon.png' if that's what you're using $faviconUrl = asset('favicon.ico') . '?v=' . (file_exists($faviconPath) ? filemtime($faviconPath) : time()); @endphp Users Listing

Users Listing

@foreach($users as $user) @endforeach
UsernameStatusAction
{{ $user->username }} {{ $user->status ? 'Active' : 'Suspended' }}
@csrf @method('PATCH')