@extends('frontEnd.layouts.master') @section('title','Customer Account') @section('content')
@include('frontEnd.layouts.customer.sidebar')
@php $customer = \App\Models\Customer::with('cust_area')->find(Auth::guard('customer')->user()->id); @endphp
Name {{$customer->name}}
Phone {{$customer->phone}}
Email {{$customer->email}}
Address {{$customer->address}}
Disctrict {{$customer->district}}
Area {{$customer->cust_area?$customer->cust_area->area_name:''}}
Image
@endsection @push('script') @endpush