Customer data at onepage.blade.php
-
Hi,
Please, how do I access customer data from onepage.blade.php ( within a div ) ?
All I could do was get customer_id via customer-info.blade.php.
Thanks in advance for any guidance / help,
s -
Hi @nessuno,
Use
{{ auth('customer')->user() }}
to get current customer. -
@devansh-webkul Thank You !