2022-11-16 01:52:53 +00:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
@section('title', '用户')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2022-11-18 09:16:30 +00:00
|
|
|
{{-- 用户列表 --}}
|
|
|
|
<div class="overflow-auto">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<th>用户名</th>
|
|
|
|
<th>邮箱</th>
|
|
|
|
<th>金额</th>
|
|
|
|
<th>注册时间</th>
|
|
|
|
<th>操作</th>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
@foreach ($users as $user)
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ route('admin.users.show', $user) }}">
|
|
|
|
{{ $user->name }}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $user->email }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $user->balance }} 元
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $user->created_at }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ route('admin.users.show', $user) }}" class="btn btn-primary btn-sm">编辑</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{-- 分页 --}}
|
|
|
|
{{ $users->links() }}
|
|
|
|
|
2022-11-16 01:52:53 +00:00
|
|
|
|
|
|
|
@endsection
|