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