Files
opensem/resources/views/components/form/button.blade.php
2022-08-18 18:20:44 +02:00

8 lines
284 B
PHP

<button type="{{ $type ?? 'button' }}" class="btn {{ $class ?? ''}}"
@isset($id) id="{{ $id }}" @endisset
@isset($data_id) data-id="{{ $data_id }}" @endisset
{{ $metadata ?? null }}
>
@if ($icon ?? false)<i class="fa fa-fw {{ $icon ?? '' }}"></i>@endif
{{ $txt ?? '' }}
</button>