@props([ 'url', 'filename' => null, 'label' => 'Document', 'linkText' => 'View', 'linkClass' => 'text-[11.5px] font-medium text-indigo-600 hover:underline', ]) @php $displayName = $filename ?? basename(parse_url((string) $url, PHP_URL_PATH) ?: 'document'); $ext = strtolower(pathinfo($displayName, PATHINFO_EXTENSION)); if ($ext === '' && str_contains(strtolower((string) $url), '.pdf')) { $ext = 'pdf'; } $isPdf = $ext === 'pdf'; $isImage = in_array($ext, ['jpg', 'jpeg', 'png', 'gif', 'webp', 'bmp'], true); @endphp class('inline') }} >