@extends('backend.layouts.layout') @section('title','User') @section('content')

User

@if(!empty($users->count())) @foreach($users as $user) @endforeach @else @endif
Tên Username Email Điện thoại Trạng thái Vai trò Tạo lúc Sửa lúc
{{$user->name}} {{$user->username}} {{$user->email}} {{$user->phone}} {{$user->getStatus($user->status)['label']}} {{ $user->is_admin ? 'Admin' : 'Manage' }} {{date('d/m/Y H:i:s',strtotime($user->created_at))}} {{date('d/m/Y H:i:s',strtotime($user->updated_at))}}
Không có dữ liệu
{{$users->links()}}
@endsection @push('scripts') @endpush