12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @extends('admin.layout')
- @section('content')
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>评论</h5>
- <div class="ibox-tools">
- <a class="collapse-link"> <i class="fa fa-chevron-up"></i>
- </a>
- </div>
- </div>
- <div class="ibox-content">
- <div class="row">
- {{-- <form method="GET" action="" accept-charset="UTF-8">
- <div class="col-sm-4">
- <div class="input-group">
- <input type="text" value="{{Request::get('keyword')}}" placeholder="请输入关键词" name="keyword"class="input-sm form-control">
- <span class="input-group-btn">
- <button type="submit" class="btn btn-sm btn-primary">搜索</button>
- </span>
- </div>
- </div>
- </form>--}}
- </div>
-
- <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
- <thead>
- <tr>
-
- <th class="sorting" data-sort="id"> ID </th>
- <th > 用户 </th>
- <th > 地标 </th>
- <th width="22%">相关操作</th>
- </tr>
- </thead>
- <tbody>
- @if(isset($list))
- @foreach($list as $key => $item) <tr>
-
- <td>{{ $item->id }}</td>
- <td>{{ $item->user }}</td>
- <td>{{ $item->mark }}</td>
- <td>
- <div class="btn-group">
- <button data-toggle="dropdown"
- class="btn btn-warning btn-sm dropdown-toggle"
- aria-expanded="false">
- 操作 <span class="caret"></span>
- </button>
- <ul class="dropdown-menu">
- @if(role('Map/Message/destroy'))
- <li class="divider"></li>
- <li><a href="{{ U('Map/Message/destroy',['id'=>$item->id])}}" onclick="return confirm('你确定执行删除操作?');">删除</a></li>
- @endif
- </ul>
- </div>
- @if(role('Map/Message/view'))
- <button onclick="layer.open({type: 2,area: ['80%', '90%'],content: '{{ U('Map/Message/view',['id'=>$item->id])}}'});" class="btn btn-primary ">查看</button>
- @endif
- </td>
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- <div class="row">
- <div class="col-sm-6">
- <div class="dataTables_info" id="DataTables_Table_0_info"
- role="alert" aria-live="polite" aria-relevant="all">每页{{ $list->count() }}条,共{{ $list->lastPage() }}页,总{{ $list->total() }}条。</div>
- </div>
- <div class="col-sm-6">
- <div class="dataTables_paginate paging_simple_numbers" id="DataTables_Table_0_paginate">
- {!! $list->setPath('')->appends(Request::all())->render() !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
|