Feuerwehr-eppingen/resources/views/inc/forms/button.blade.php
2022-08-17 21:20:44 +02:00

20 lines
455 B
PHP
Executable File

<button href="{{ $url }}" class="btn {{ $style }} @if(isset($class)) {{ $class }} @endif"
@if(isset($data))
@foreach($data as $key => $val)
data-{{ $key }}="{{ $val }}"
@endforeach
@endif
@if(isset($target))
target="{{ $target }}"
@endif
@if(isset($dataId))
data-id="{{ $dataId }}"
@endif
@if(isset($value))
data-value="{{ $value }}"
@endif>
<span class="{{ $icon }}"></span>
@if(isset($label))
{{ $label }}
@endif
</button>