Laravel5.7: 削除確認をBootstrapのModalで行う
記事やユーザーの削除ボタンを押したら、いきなり削除せずにモーダルウィンドウで確認できるようにします。
親記事
Laravel 5.7で基本的なCRUDを作る - Qiita
モーダル用のコンポーネントを作る
以前の記事で作ったbtn-del.blade.php
を、丸ごと下記の内容に修正します。
Bootstrap4のモーダルを利用しています。
resources/views/components/btn-del.blade.php
1ページの中で複数の削除ボタンを表示する場合があるので、id属性がユニークになるようにmodal-delete-<コントローラ名>-<id番号>
のように記述します。
最終確認の削除ボタンを<form>
で囲って、削除用のアクションメソッドへ送信するようにしています。
コンポーネントを呼び出す
以前の記事で作ったコンポーネントとはスロットの数も内容も異なるので、下記のように修正してください。
これで完成形です。
@component('components.btn-del')
@slot('controller', 'posts')
@slot('id', $post->id)
@slot('name', $post->title)
@endcomponent
@component('components.btn-del')
@slot('controller', 'users')
@slot('id', $user->id)
@slot('name', $user->title)
@endcomponent
(中略)
@component('components.btn-del')
@slot('controller', 'posts')
@slot('id', $post->id)
@slot('name', $post->title)
@endcomponent
Author And Source
この問題について(Laravel5.7: 削除確認をBootstrapのModalで行う), 我々は、より多くの情報をここで見つけました https://qiita.com/sutara79/items/982ad923352573d7f68d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .