123456789101112131415161718192021222324252627282930313233343536373839 |
- <div class="box box-info">
- <div class="box-header with-border">
- <h3 class="box-title">列表</h3>
- <div class="box-body table-responsive no-padding">
- <table class="table table-hover">
- <thead><tr>
- <th>id</th>
- <th>公司名称</th>
- <th>数</th>
- <th>用户名称</th>
- <th>注册时间</th>
- <th>操作</th>
- </tr></thead>
- <tbody>
- @foreach($data as $key => $val)
- <tr>
- <td>{{ $val->id }}</td>
- <td> {{ $val->companys['companyname'] }}</td>
- <td>
- {{ $val->points }}
- </td>
- <td>
- {{ $val->companys['username'] }}
- </td>
- <td>
- {{ $val->created_at }}
- </td>
- <td>
- <a href="{{admin_base_path('/firm/points/edit')}}/{{ $val->id }}">
- <i class="fa fa-edit"></i>
- </a>| <a href="javascript:void(0)" class="setmealLog">套餐日志</a>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
|