38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||
|
|
<title>News Room</title>
|
||
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="content">
|
||
|
|
<h1>领取预览会员统计</h1>
|
||
|
|
<table border="1" width="80%">
|
||
|
|
<tr>
|
||
|
|
<th>序号</th>
|
||
|
|
<th>用户id</th>
|
||
|
|
<th>领取时间</th>
|
||
|
|
<th>到期时间</th>
|
||
|
|
</tr>
|
||
|
|
@foreach ($logs as $log)
|
||
|
|
<tr>
|
||
|
|
<td>{{$loop->index + 1}}</td>
|
||
|
|
<td><a href="{{env('APP_URL')}}/admin_pro/#/secondary/userDetail/{{$log->user_id }}" target="_blank">{{$log->user_id }}</a></td>
|
||
|
|
<td>{{$log->created_at }}</td>
|
||
|
|
<td>{{$log->deadline }}</td>
|
||
|
|
</tr>
|
||
|
|
@endforeach
|
||
|
|
</table>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
<script src="{{ mix('js/app.js') }}"></script>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
{{-- {{dd($users)}};--}}
|
||
|
|
</script>
|
||
|
|
</html>
|