18 lines
425 B
PHP
18 lines
425 B
PHP
@include('components.form.button', [
|
|
'class' => 'btn-secondary cancel ' . ($class ?? ''),
|
|
'icon' => 'fa-times',
|
|
'txt' => $title ?? 'Annuler',
|
|
])
|
|
|
|
@push('js')
|
|
<script>
|
|
$('.form-buttons .cancel').click(function() {
|
|
@if (isset($url))
|
|
window.location = "{{ $url }}";
|
|
@else
|
|
window.history.back();
|
|
@endif
|
|
})
|
|
</script>
|
|
@endpush
|