@extends('admin.layouts.app') @section('content')
我的线索
@if(role('User/Threads/addCallList'))
@endif
@if(isset($list)) @foreach($list as $key => $item) @endforeach @endif
ID 联系方式 线索拥有者 企业名称 企业网址 注册资本 最新跟进 领取时间 相关操作
{{ $item->id }} {{ $item->contact?$item->contact->phone:'暂无联系人信息' }} {{ $item->ower->real_name }} {{ $item->company->companyName }} {{ $item->company->website }} {{ $item->company->regCapital }} {{ $item->latestProgress() }} {{ $item->created_at }} @if(role('User/Threads/update')) @endif @if(role('User/Threads/destroy')) 放弃 @endif @if(role('User/Threads/view')) @endif
{!! $list->setPath('')->appends(Request::all())->render() !!}
@endsection @section('js') @endsection