@extends('admin.layouts.contentLayoutMaster') @section('title','會員資料') @section('vendor-styles') @endsection @section('page-styles') @endsection @section('content') {{-- search bar --}}

搜尋

狀態

列表

@can('會員管理-會員資料列表-編輯') @endcan
{{-- --}} {{-- --}} @if ($users->isNotEmpty()) @foreach ($users as $user) @endforeach @else @include('admin.panels.list-no-data') @endif
會員姓名 手機 郵件生日註冊日期標籤 信箱驗證 / 手機驗證 操作
{{ optional($user->profile)->name }} {{ $user->status != '1' ? '停用' : '' }} {{ $user->mobile }} {{ $user->email }} /
@csrf @method('DELETE') {{-- --}} @can('會員管理-消費紀錄列表-檢視') @endcan @can('會員管理-折價券列表-檢視') @endcan @can('會員管理-會員資料列表-編輯') @endcan @can('會員管理-會員資料列表-刪除') @endcan
@endsection @section('vendor-scripts') @endsection @section('page-scripts') @endsection