@extends('layouts.base') @section('title', '酒店申请列表') @section('content')
筛选
总数:{{$total}}
@foreach($list as $row) @endforeach
ID 会员 账号 姓名 手机 申请时间 状态 详情 操作
{{$row->id}}
@if ($row->hasOneMember->nickname) {{$row->hasOneMember->nickname}} @else {{$row->hasOneMember->mobile}} @endif
{{$row->username}} {{$row->realname}} {{$row->mobile}} {{$row->created_at}} @if ($row->status == -1) 查看详情 @if (!$row->status) 驳回审核 审核通过 @endif
{!! $pager !!}
@endsection