| 1234567891011121314151617 |
- <div class="row">
- <div class="@if(!($right ?? null)) offset-md-{{ $offset ?? 4 }} col-md-8 @endif">
- <button type="submit" class="btn btn-primary sbmt text-white">{{ $name ?? 'Сохранить' }}</button>
- </div>
- </div>
- @push('scripts')
- <script type="module">
- $('.sbmt').on('click', function (){
- $(this).addClass('d-none');
- setTimeout(function () {
- $('.sbmt').removeClass('d-none');
- },
- 2000);
- });
- </script>
- @endpush
|