quirksはクソ

This commit is contained in:
shibafu 2020-07-24 12:42:11 +09:00
parent ef18d26b5d
commit d58afc0324
1 changed files with 15 additions and 15 deletions

View File

@ -48,22 +48,22 @@
@endforeach @endforeach
</div> </div>
@endif @endif
@endsection
@component('components.modal', ['id' => 'deleteIncomingWebhookModal']) @component('components.modal', ['id' => 'deleteIncomingWebhookModal'])
@slot('title') @slot('title')
削除確認 削除確認
@endslot @endslot
Webhookを削除してもよろしいですか Webhookを削除してもよろしいですか
<form action="{{ route('setting.webhooks.destroy', ['webhook' => '@']) }}" method="post"> <form action="{{ route('setting.webhooks.destroy', ['webhook' => '@']) }}" method="post">
{{ csrf_field() }} {{ csrf_field() }}
{{ method_field('DELETE') }} {{ method_field('DELETE') }}
</form> </form>
@slot('footer') @slot('footer')
<button type="button" class="btn btn-secondary" data-dismiss="modal">キャンセル</button> <button type="button" class="btn btn-secondary" data-dismiss="modal">キャンセル</button>
<button type="button" class="btn btn-danger">削除</button> <button type="button" class="btn btn-danger">削除</button>
@endslot @endslot
@endcomponent @endcomponent
@endsection
@push('script') @push('script')
<script src="{{ mix('js/setting/webhooks.js') }}"></script> <script src="{{ mix('js/setting/webhooks.js') }}"></script>