77 lines
2.9 KiB
PHP
77 lines
2.9 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>用户 | Yunshop</title>
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="/libs/font-awesome/4.5.0/css/font-awesome.min.css">
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet" href="/libs/ionicons/2.0.1/css/ionicons.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="/dist/css/AdminLTE.min.css">
|
|
<!-- iCheck -->
|
|
<link rel="stylesheet" href="/plugins/iCheck/square/blue.css">
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="/libs/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body class="hold-transition login-page">
|
|
<div class="main animsition">
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box">
|
|
|
|
<div class="box-body">
|
|
<table id="tags-table" class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th class="hidden-sm">id</th>
|
|
<th class="hidden-sm">用户名</th>
|
|
<th class="hidden-sm">邮箱</th>
|
|
<th class="hidden-md">创建日期</th>
|
|
<th class="hidden-md">修改日期</th>
|
|
<th data-sortable="false">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($users as $key => $user)
|
|
<tr>
|
|
<td>{{$user->id}}</td><td>{{$user->name}}</td><td>{{$user->email}}</td><td>{{$user->created_at}}</td><td>{{$user->updated_at}}</td><td></td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- /.login-box -->
|
|
|
|
<!-- jQuery 2.2.0 -->
|
|
<script src="/plugins/jQuery/jQuery-2.2.0.min.js"></script>
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<script src="/bootstrap/js/bootstrap.min.js"></script>
|
|
<!-- iCheck -->
|
|
<script src="/plugins/iCheck/icheck.min.js"></script>
|
|
<script>
|
|
$(function () {
|
|
$('input').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
increaseArea: '20%' // optional
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |