Files
2026-07-01 22:43:28 +07:00

8 lines
240 B
PHP

@props(['name', 'class' => ''])
@php
$svgPath = resource_path('assets/icons/' . $name . '.svg');
@endphp
<span {{ $attributes->merge(['class' => $class]) }} role="img" aria-hidden="true">
{!! file_get_contents($svgPath) !!}
</span>