diff options
author | Sam Light <samlight1994@gmail.com> | 2024-06-15 11:16:44 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2024-06-15 11:16:44 +0100 |
commit | 65c94080f6b8eae4a8217751de0dc847579c923d (patch) | |
tree | 59fa65cebc576c4c953cf1c534811ce827613246 /resources |
Initial commit
Diffstat (limited to 'resources')
-rw-r--r-- | resources/views/components/svg.blade.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/resources/views/components/svg.blade.php b/resources/views/components/svg.blade.php new file mode 100644 index 0000000..7bbbebf --- /dev/null +++ b/resources/views/components/svg.blade.php @@ -0,0 +1,8 @@ +@inject('svg', 'Lightscale\LaralightSvg\SvgService') +@props([ + 'collection', + 'name', +]) +<svg {{ $attributes }}> + <use href="{{ $svg->getCollectionUrl($collection, $name) }}" /> +</svg> |