gps_system/resources/views/flux/button-or-div.blade.php
sackey 6b878bb0a0
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Initial commit
2025-09-12 16:19:56 +00:00

16 lines
254 B
PHP

@pure
@props([
'as' => null,
])
<?php if ($as === 'button'): ?>
<button {{ $attributes->merge(['type' => 'button']) }}>
{{ $slot }}
</button>
<?php else: ?>
<div {{ $attributes }}>
{{ $slot }}
</div>
<?php endif; ?>