@php Theme::layout('full-width'); $menus = [ [ 'key' => 'customer.overview', 'label' => __('Overview'), 'icon' => 'fa fa-atom' ], [ 'key' => 'customer.edit-account', 'label' => __('Profile'), 'icon' => 'fa fa-user-edit' ], [ 'key' => 'customer.orders', 'label' => __('Orders'), 'icon' => 'fa fa-shopping-basket', 'routes' => ['customer.orders.view'] ], [ 'key' => 'customer.address', 'label' => __('Address books'), 'icon' => 'fa fa-map-marked', 'routes' => [ 'customer.address.create', 'customer.address.edit' ] ], [ 'key' => 'public.wishlist', 'label' => __('Wishlist'), 'icon' => 'fas fa-heart', ], [ 'key' => 'customer.change-password', 'label' => __('Change password'), 'icon' => 'fa fa-key' ], [ 'key' => 'customer.logout', 'label' => __('Logout'), 'icon' => 'fa fa-sign-out-alt' ] ]; @endphp
{{ auth('customer')->user()->name }}
{{ auth('customer')->user()->name }}

{{ auth('customer')->user()->email }}


@yield('content')