@extends('layouts.app') @section('title', 'User Management') @section('breadcrumbs') @endsection @section('content')

User Management

Manage system users and their permissions

Add User
@for ($i = 0; $i < 12; $i++) @endfor
Name Email Role Status Last Login Actions
User User {{ $i + 1 }}
user{{ $i + 1 }}@hotel.com @switch($i % 4) @case(0) Admin @break @case(1) Manager @break @case(2) Staff @break @case(3) Viewer @break @endswitch @if ($i % 5 === 0) Inactive @else Active @endif {{ now()->subDays($i)->format('M d, Y H:i') }} Edit

Showing 1 to 12 of 45 users

@endsection