{!! Form::label('name', __('Name')) !!}

{{ $user->name }}

@php // $user = User::find($dataTable->id); $userWallets = $user->wallets; $wc = []; foreach ($userWallets as $key => $wallet) { $wc[] = $wallet->country_currency->code; } $wc = array_unique($wc); $wcString = implode(', ', $wc); $balance = $user->balance().' ' .$wcString; @endphp
{!! Form::label('balance', __('Balance')) !!}

{{ $balance }}

@csrf
{!! Form::label('email', __('Email')) !!}

{{ $user->email }}

{!! Form::label('phone', __('Phone')) !!}

{{ $user->phone }}

{!! Form::label('address', __('Address')) !!}

{{ $user->address }}

{!! Form::label('address', __('Status')) !!} @if ($user->status == 1)
Active
@else
Deactive
@endif
{!! Form::label('image', __('Image')) !!}

No Image Found

{!! Form::label('created_at', __('Created At')) !!}

{{ $user->created_at->toFormattedDateString() }}

{!! Form::label('updated_at', __('Updated At')) !!}

{{ $user->updated_at->toFormattedDateString() }}