@extends('layouts.panel-admin')
@section('title', 'Cuenta eliminada — ' . $account->email)
@section('content')
| Fecha baja |
{{ \Carbon\Carbon::parse($account->deletedAt)->format('d/m/Y H:i') }} |
| Email |
{{ $account->email }} |
@foreach([
'name' => 'Nombre',
'phone' => 'Teléfono',
'gender' => 'Género',
'age' => 'Edad',
'country' => 'País',
'municipality_id' => 'Municipio',
'telegram' => 'Telegram',
'whatsapp' => 'WhatsApp',
'description' => 'Descripción',
'visible' => 'Visible',
'published' => 'Publicado',
'phone_verified' => 'Teléfono verificado',
] as $key => $label)
@if(isset($account->profileData[$key]) && $account->profileData[$key] !== null && $account->profileData[$key] !== '')
| {{ $label }} |
@php $val = $account->profileData[$key]; @endphp
@if(is_bool($val))
{{ $val ? 'Sí' : 'No' }}
@else
{{ $val }}
@endif
|
@endif
@endforeach
@endsection