@extends('layouts.base') @section('title', '合同列表') @section('content')
  • 合同管理
@include('Yunshop\ShopEsign::admin.contract.form')
合计:{{$statistics['total_count']}}份;    已完成:{{$statistics['finish_count']}}份;    未完成:{{$statistics['unfinish_count']}}份。
@foreach($list as $row) @endforeach
ID 创建时间 模板名称/合同名称 合同发起类型 使用场景 签署会员
头像昵称
姓名
手机号
状态 操作
{{$row->id}} {{$row->created_at}} {{$row->hasOneTemplate->name}}
{{$row->name}}
@if($row->template_id==0) 上传文件发起 @else 模版发起 @endif {{$row->scene_desc}}
{{$row->hasOneMember->nickname}}
{{$row->hasOneMember->realname}}
{{$row->hasOneMember->mobile}}
{{$row->status_desc}}
{!!$pager!!}
@endsection