Files
opensem/resources/views/components/form/button.blade.php
2022-01-18 23:39:27 +01:00

6 lines
210 B
PHP

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