@extends('admin::layouts.master') @section('title', __('admin/common.customer')) @section('content')
| {{ __('common.id') }} | {{ __('customer.email') }} | {{ __('customer.name') }} | {{ __('customer.from') }} | {{ __('customer.customer_group') }} | {{ __('common.status') }} | {{ __('common.created_at') }} | @hook('admin.customer.list.column'){{ __('common.action') }} |
|---|---|---|---|---|---|---|---|
| {{ $customer['id'] }} | {{ $customer['email'] }} |
{{ $customer['name'] }}
|
{{ $customer['from'] }} | {{ $customer->customerGroup->description->name ?? '' }} | {{ $customer['status'] ? __('common.enable') : __('common.disable') }} | {{ $customer['created_at'] }} | @hook('admin.customer.list.column_value')@if ($type != 'trashed') {{ __('common.edit') }} @hook('admin.customer.list.action') @else {{ __('common.restore') }} @hook('admin.customer.trashed.action') @endif |