Files
thankcard-system/resources/views/components/icon.blade.php
T
2026-07-01 16:57:34 +07:00

8 lines
238 B
PHP

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