@extends('layouts.admin') @section('title', 'Users') @section('topbar-title', 'Users') @section('content')

All Users ({{ $users->total() }})

@if(request('search'))Clear@endif
@forelse($users as $user) @empty @endforelse
NameEmailCompanyLicensesOrdersStatusJoined
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }} {{ $user->company ?: '—' }} {{ $user->licenses_count }} {{ $user->orders_count }} {{ $user->is_active ? 'Active' : 'Disabled' }} {{ $user->created_at->format('M j, Y') }}
View
@csrf
No users found
{{ $users->withQueryString()->links() }}
@endsection