| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @extends('layouts.base')
- @section('title', '等级导入记录')
- @section('content')
- <link href="{{static_url('yunshop/balance/balance.css')}}" media="all" rel="stylesheet" type="text/css"/>
- <div id="member-blade" class="rightlist">
- <div class="panel panel-info">
- <div class="panel-heading">
- <span>当前位置:</span>
- <a href="{{ yzWebUrl('plugin.red-packet.admin.import.index') }}">
- <span>额度导入</span>
- </a>
- <span>>></span>
- <a href="#">
- <span>额度导入记录</span>
- </a>
- </div>
- </div>
- <div class="clearfix">
- <div class="panel panel-default">
- <div class="panel-heading">记录总数:{{ $pageList->total() }}</div>
- <div class="panel-body">
- <table class="table table-hover" style="overflow:visible;">
- <thead class="navbar-inner">
- <tr>
- <th style='width:12%; text-align: center;'>导入时间</th>
- <th style='width:12%; text-align: center;'>操作人</th>
- <th style='width:12%; text-align: center;'>操作IP</th>
- <th style='width:12%; text-align: center;'>导入数量</th>
- <th style='width:12%; text-align: center;'>失败数量</th>
- </tr>
- </thead>
- <tbody>
- @foreach($pageList as $list)
- <tr>
- <td style="text-align: center;">{{ $list->created_at }}</td>
- <td style="text-align: center;">【ID:{{ $list->admin_id }}】</td>
- <td style="text-align: center;">{{ $list->admin_ip }}</td>
- <td style="text-align: center;">{{ $list->total}}</td>
- <td style="text-align: center;">{{ $list->failure }}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- {!! $pager !!}
- </div>
- </div>
- </div>
- @endsection
|