1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
- <thead>
- <tr>
- <th>
- <label><input type="checkbox" id="checkAll"> 本页</label>
- <label><input type="checkbox" id="checkTotal"> 全部</label>
- </th>
- <th class="sorting" data-sort="id"> ID</th>
- <th class="sorting" data-sort="phone"> 电话号码</th>
- <th class="sorting" data-sort="ip"> 拨打IP</th>
- <th class="sorting" data-sort="sync"> 是否同步到拨打列表:</th>
- <th class="sorting" data-sort="created_at"> 添加时间</th>
- <th class="sorting" data-sort="updated_at"> 更新时间</th>
- <th width="22%">相关操作</th>
- </tr>
- </thead>
- <tbody>
- @if(isset($list))
- @foreach($list as $key => $item)
- <tr>
- <td>
- <label><input class="calllist" name='calllist_id[]' type="checkbox"
- value="{{ $item->id }}" data-id="{{ $item->id }}"></label>
- </td>
- <td>{{ $item->id }}</td>
- <td>{{ $item->phone }}</td>
- <td>{{ $item->ip }}</td>
- <td>{{ dict()->get('call_list','sync',$item->sync) }}</td>
- <td>{{ $item->created_at }}</td>
- <td>{{ $item->updated_at }}</td>
- <td>
- @if(role('Call/List/destroy'))
- <a class="btn btn-sm btn-danger"
- href="{{ U('Call/List/destroy',['id'=>$item->id])}}"
- onclick="return confirm('你确定执行删除操作?');">删除</a>
- @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>
|