@extends('admin.layouts.app') @section('page-title') Customers @endsection @section('content')
| # | Customer Name | Phone Number | City | Zipcode | Country |
Action
|
||
|---|---|---|---|---|---|---|---|---|
| {{ $customer->id }} | @if($customer->trashed()) {{ $customer->lastname }} {{ $customer->firstname }} deleted @else {{ $customer->lastname }} {{ $customer->firstname }} @endif | {{ $customer->phonenumber }} | {{ $customer->email }} | {{ $customer->defaultAddress->city ?? 'N/A' }} | {{ $customer->defaultAddress->postal_code ?? 'N/A' }} | {{ $customer->defaultAddress->country ?? 'N/A' }} |