123456789101112131415161718192021222324252627282930313233343536373839 |
- @extends('admin.public.base')
- @section('body_class')
- style="margin: 0 auto;width: 96%;padding: 30px 0px;"
- @endsection
- @section('content')
- <div class="row">
- <div class="col-xs-12">
- <div class="table-responsive">
- <table class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th>记录ID</th>
- <th>备注信息</th>
- <th>操作时间</th>
- <th>操作人昵称</th>
- </tr>
- </thead>
- <tbody>
- @foreach ($list as $a)
- <tr>
- <td>{{$a['ua_id']}}</td>
- <td>{{$a['info']}}</td>
- <td>{{date('Y-m-d H:i:s',$a['add_time'])}}</td>
- <td>{{$a['uname']}}</td>
- </tr>
- @endforeach
- <tr>
- <td colspan="20" class="page">{{$list->render()}}</td>
- </tr>
- <tr>
- <td colspan="20">总计 {{$list->total()}} 条记录</td>
- </tr>
- </tbody>
-
- </table>
- </div>
- </div>
- </div>
- @endsection
|