@extends('admin::layouts.master') @section('title', '顾客管理') @section('content')
@foreach ($customers as $customer) @endforeach
# 邮箱 名称 注册来源 状态 操作
{{ $customer['id'] }} {{ $customer['email'] }}
{{ $customer['name'] }}
{{ $customer['from'] }} {{ $customer['status'] }} 编辑
@endsection