@extends('layouts.base') @section('title', '预约列表') @section('content')
  • 会员{{$lang_set['project']}}管理
@include('Yunshop\Appointment::admin.appointmentOrder.form')
总数:{{$list->total()}}个    总次数:{{$statistics['all_total_count']}}次    已完成的次数:{{$statistics['all_used_count']}}次    预约中的次数:{{$statistics['all_service_count']}}次    未使用的次数:{{$statistics['all_rest_count']}}次
@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->has_many_service_count}} {{$row->total_count - $row->used_count}}
{!!$pager!!}
@endsection