@extends('layouts.customer') @section('content')
{{ $message }}
| Name | Email Address | Verification | Tier | Total Orders | Reward Points | Created | Action |
|---|---|---|---|---|---|---|---|
|
@php
$words = explode(' ', trim($customer->getName()));
$initials = strtoupper(substr($words[0], 0, 1) . (isset($words[1]) ? substr($words[1], 0, 1) : ''));
@endphp
{{ $initials }}
|
{{ $customer->email }} | @if($customer->email_verified_at) {{ $customer->email_verified_at }} @else N/A @endif | {{ $loyality_program ? ( $loyality_program->tier ? ($loyality_program->tier->title ?? '') : '' ) : '' }} | {{ $customer->orders_count ?? 0; }} | {{ $total_points ?? 0 }} | {{ date('M d, y | h:i A',strtotime($customer->created_at)) }} |
|