@extends('layouts.panel-admin') @section('title', 'Cuenta eliminada — ' . $account->email) @section('content')
@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] !== '') @endif @endforeach
Fecha baja {{ \Carbon\Carbon::parse($account->deletedAt)->format('d/m/Y H:i') }}
Email {{ $account->email }}
{{ $label }} @php $val = $account->profileData[$key]; @endphp @if(is_bool($val)) {{ $val ? 'Sí' : 'No' }} @else {{ $val }} @endif
@endsection