@extends('layouts.admin.index') @section('content')

Dashboard

Customer Data
@foreach ($customers as $customer) @endforeach
Image First Name Last Name Email Phone Address State Postal Code Created Time Modified Time Birthday Member ID Loyalty Store Credit Balance Cashback Balance Actions
@if($customer->image) Customer Image @else Default Image @endif {{ $customer->firstName }} {{ $customer->lastName }} {{ $customer->email }} {{ $customer->phone }} {{ $customer->address1 }} {{ $customer->address2 }} {{ $customer->state }} {{ $customer->postalCode }} {{ $customer->createdTime }} {{ $customer->modifiedTime }} {{ $customer->birthday }} {{ $customer->memberId }} {{ $customer->loyalty }} {{ $customer->storeCreditsBalance }} {{ $customer->cashbackBalance }}
@csrf @method('PATCH')
@csrf @method('DELETE')
{{ $customers->links('pagination::bootstrap-4') }}
@endsection