@extends('layouts.base') @section('title', '预约列表') @section('content')
  • 会员{{$lang_set['project']}}预警
@include('Yunshop\Appointment::admin.projectWarn.form')
总数:{{$list->total()}}个   
@foreach($list as $row) @endforeach
ID 购买时间 会员 顾客姓名
顾客电话
{{$lang_set['project']}}名称 总次数
已完成次数
未使用次数 上次预约完成时间 操作
{{$row->id}} {{$row->created_at}}
{{$row->hasOneMember->nickname}}
{{$row->hasOneMember->realname}}
{{$row->hasOneMember->mobile}}
{{$row->project_title}} {{$row->total_count}}
{{$row->used_count-$row->has_many_service_count}}
{{$row->total_count - $row->used_count}}
{{date('Y-m-d H:i:s',$row->last_appointment_time)}}
{!!$pager!!}
@endsection