@extends('admin.layouts.app') @section('content')
通话纪录
@if(role('Call/Records/create')) @endif
@if(isset($list)) @foreach($list as $key => $item) @endforeach @endif
ID 电话号码 拨打时间 结束时间 录音地址 挂断原因 拨打IP 相关操作
{{ $item->id }} {{ $item->phone }} {{ $item->start_time }} {{ $item->end_time }} {{ $item->record_path }} {{ $item->hangup_dispostion }} {{ $item->ip }} @if(role('Call/Records/update')) @endif @if(role('Call/Records/destroy')) 删除 @endif @if(role('Call/Records/view')) @endif
{!! $list->setPath('')->appends(Request::all())->render() !!}
@endsection