@extends('app::layouts.app') @section('title', 'My Profile') @section('content') @php $displayName = trim((string) ($user->name ?: 'User')); $initialSeed = trim((string) ($displayName ?: $user->email ?: 'U')); $initials = collect(preg_split('/\s+/', $initialSeed) ?: []) ->filter() ->take(2) ->map(fn (string $segment): string => mb_strtoupper(mb_substr($segment, 0, 1))) ->implode(''); $memberSince = $user->created_at?->format('M Y'); $stats = [ [ 'label' => 'Listings', 'value' => (int) ($user->listings_count ?? 0), 'hint' => 'Ads you manage from your dashboard.', ], [ 'label' => 'Saved Listings', 'value' => (int) ($user->favorite_listings_count ?? 0), 'hint' => 'Items you bookmarked for later.', ], [ 'label' => 'Saved Searches', 'value' => (int) ($user->favorite_searches_count ?? 0), 'hint' => 'Searches you can revisit instantly.', ], [ 'label' => 'Saved Sellers', 'value' => (int) ($user->favorite_sellers_count ?? 0), 'hint' => 'Sellers you want to keep an eye on.', ], ]; @endphp
{{ $stat['label'] }}
{{ number_format($stat['value']) }}
{{ $stat['hint'] }}