@extends('layouts.admin') @section('title', 'Admin Profile') @push('vendor-styles') @endpush @push('page-styles') @endpush @section('body')

Customer Profile

{{-- *************************** Basic Information *******************************--}}
{{-- ******************* Wallet Amount ****************************** --}}
{{ isset($customer->wallet) ? $customer->wallet->amount : '0' }}
@if ($customer->wallet) @if ($customer->wallet->auto_refill == '1') @elseif($customer->wallet->auto_refill == '0') @endif()
@else
@endif()
{{--************ ----- tab -----***************** --}}
{{-- Showing Recoreds of Tabs --}}
@if (!empty($order_detail)) @foreach ($order_detail as $key => $orders) @if ($orders->status == 1) @elseif($orders->status == 2) @elseif($orders->status == 3) @elseif($orders->status == 4) @endif() @endforeach() @endif()
S.No Order Id Order Date Status Action
{{ ++$key }} {{ $orders->order_id }} {{ $orders->date }}PendingAcceptedCompletedCanceledSee Detail
@if (!empty($fav_provider)) @foreach ($fav_provider as $key => $user) @endforeach() @endif()
S.No Name Email Type Action
{{ ++$key }} {{ $user->user->first_name }} {{ $user->user->email }} {{ $user->user->type }} See Detail

Basic Information

@csrf

* Address is required

{{-- --}}
{{-- -------******** Property **************------------- --}}

User Property

@foreach ($customer->Property as $properties) @endforeach
Map Address Action
# @if ($properties->orders->count() === 0) @endif
@endsection @push('vendor-scripts') {{-- --}} @endpush @push('page-scripts') @endpush