@extends('layouts.app') @section('content') @php $placeholderImage = 'https://cdn-proxy.globalcontentcloud.com/456/logo/game-placeholder.png'; $safeImageUrl = function ($url) use ($placeholderImage) { $url = trim((string) $url); if ($url === '') { return $placeholderImage; } if (preg_match('/^(https?:\/\/|\/)/i', $url)) { return $url; } return $placeholderImage; }; @endphp
@endsection