| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @extends('layouts.base')
- @section('content')
- @section('title', trans('升级等级条件记录'))
- <style>
- .table>tbody>tr>td{
- padding: 10px;
- }
- </style>
- <section class="content">
- <div class="right-titpos">
- <ul class="add-snav">
- <li class="active"><a href="">升级等级条件记录</a></li>
- </ul>
- </div>
- <form action="" method="post" onsubmit="return formcheck(this)">
- <div class='panel panel-default'>
- <div class='panel-body'>
- <div class="table-responsive ">
- <table class="table table-hover">
- <thead>
- <tr>
- <th style="width: 10%">记录ID</th>
- <th style="width: 10%;">升级条件</th>
- <th style="width: 10%">创建时间</th>
- </tr>
- </thead>
- <tbody>
- @foreach($list['data'] as $row)
- <tr>
- <td >{{$row['id']}}</td>
- <td >{{$row['remarks']}}</td>
- <td >
- {{$row['created_at']}}
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- {!! $pager !!}
- </div>
- </form>
- </section><!-- /.content -->
- @endsection
|