6 lines
210 B
PHP
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> |