@extends('admin.layout') @section('content')

All Users

@csrf
@if(!empty($errors->all()))
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif @if (session('message'))
{{ session('message') }}
@endif
@if( count($users) != 0 ) @foreach ($users as $user) @endforeach @else @endif
User id Email Name Created at Actions
{{ $user->id }} {{ $user->email }} {{ $user->name }} {{ !empty($user->created_at) ? date_format($user->created_at,"Y/m/d") : null }} Show @canBeImpersonated($user) Impersonate this user @endCanBeImpersonated
No record found
{{ $users->links() }}
@livewire('stat-graph', ['model' => 'User', 'table' => 'users'])
@if($user) @endif @endsection