@extends('admin.layouts.contentLayoutMaster') @section('title','會員資料') @section('vendor-styles') @endsection @section('page-styles') @endsection @section('content') {{-- search bar --}} 搜尋 會員電話 會員姓名 會員郵件 狀態 @if (!empty($status)) @foreach ($status as $key => $value) input('status') == (string)$key ? 'selected' : '' }} >{{ $value }} @endforeach @endif 標籤 或 且 列表 @can('會員管理-會員資料列表-編輯') 新增 @endcan 會員姓名 手機 郵件 {{-- 生日--}} {{-- 註冊日期 --}} 標籤 信箱驗證 / 手機驗證 操作 @if ($users->isNotEmpty()) @foreach ($users as $user) {{ optional($user->profile)->name }} {{ $user->status != '1' ? '停用' : '' }} {{ $user->mobile }} {{ $user->email }} / @csrf @method('DELETE') {{-- --}} @can('會員管理-消費紀錄列表-檢視') @endcan @can('會員管理-折價券列表-檢視') @endcan @can('會員管理-會員資料列表-編輯') @endcan @can('會員管理-會員資料列表-刪除') @endcan @endforeach @else @include('admin.panels.list-no-data') @endif 會員資料 × 性別 @foreach ($genders as $key => $value) {{ $value }} @endforeach 會員姓名 @{{ profiles.name }} 手機 @{{ profiles.mobile }} 郵件 @{{ profiles.email }} 生日 @{{ profiles.birthday }} 住址 @{{ profiles.county }}@{{ profiles.district }}@{{ profiles.address }} 廠商服務 訂單編號 價格 累積點數 消費日期 @foreach ($firm_services as $key => $value) {{ $value }} @endforeach @{{ item.code }} @{{ item.price }} @{{ item.purchase_at }} {{-- @{{ profiles.purchases }} --}} @endsection @section('vendor-scripts') @endsection @section('page-scripts') @endsection