Laravel 8의 체크박스를 사용하여 여러 레코드를 삭제하는 방법
25766 단어 phphowlaraveljavascript
이번 포스트에서는 라라벨 8의 체크박스를 이용하여 다중 삭제 레코드를 구현하는 방법에 대해 공유하겠습니다. 때때로 버튼을 하나씩 클릭할 필요가 없도록 한 번의 클릭으로 멀티 액션을 지원하기 위해 이 기능을 추가해야 할 때가 있습니다. 이 예에서는 다중 삭제 작업을 사용하고 있습니다. 이는 사용자 게시물 승인, 비활성화 또는 다중 작업에서 활성화와 같이 원하는 모든 작업을 사용할 수 있는 아이디어일 뿐입니다. Sweetalert 2 확인으로 서버에 요청하는 동안 페이지를 새로 고칠 필요가 없도록 ajax를 사용하고 있습니다.
![laravel-8의 체크박스를 사용하여 여러 레코드를 삭제하려면 어떻게 해야 합니까? https://ecn-storage.s3.us-west-2.amazonaws.com/articles/how-to-delete-multiple-records-using-checkbox-in-laravel-8-QB1cxbU6DHx980.webp?ctm=1631279222 )
그런데 이 예제에서는 제가 만든 jQuery 플러그인 TableCheckAll을 사용했습니다. 테이블 체크박스를 클릭 한 번으로 여러 항목을 확인하는 데 도움이 됩니다. 플러그인에 대한 자세한 내용은 tutorial and download를 참조하십시오.
이 예에는 컨트롤러, 모델, 경로 및 블레이드가 있습니다. 아래 단계를 계속 읽으십시오.
노선
Route::post('/posts/multi-delete', [PostsController::class, 'multiDelete'])->name('posts.multi-delete');
다중 삭제를 위한 컨트롤러 방법
컨트롤러에서 아래 방법을 복사하십시오. 이 예에서 내 컨트롤러 이름은 PostsController입니다.
/**
* Multi-remove specified resources from storage
*
* @param Request $request
* @return \Illuminate\Http\Response
*/
public function multiDelete(Request $request)
{
Post::whereIn('id', $request->get('selected'))->delete();
return response("Selected post(s) deleted successfully.", 200);
}
모델
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $fillable = [
'title',
'description',
'body'
];
use HasFactory;
}
블레이드 파일
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Delete Record using Ajax in Laravel 8 - codeanddeploy.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="plugins/Jquery-Table-Check-All/dist/TableCheckAll.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#posts-table").TableCheckAll();
$('#multi-delete').on('click', function() {
var button = $(this);
var selected = [];
$('#posts-table .check:checked').each(function() {
selected.push($(this).val());
});
Swal.fire({
icon: 'warning',
title: 'Are you sure you want to delete selected record(s)?',
showDenyButton: false,
showCancelButton: true,
confirmButtonText: 'Yes'
}).then((result) => {
/* Read more about isConfirmed, isDenied below */
if (result.isConfirmed) {
$.ajax({
type: 'post',
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
url: button.data('route'),
data: {
'selected': selected
},
success: function (response, textStatus, xhr) {
Swal.fire({
icon: 'success',
title: response,
showDenyButton: false,
showCancelButton: false,
confirmButtonText: 'Yes'
}).then((result) => {
window.location='/posts'
});
}
});
}
});
});
$('.delete-form').on('submit', function(e) {
e.preventDefault();
var button = $(this);
Swal.fire({
icon: 'warning',
title: 'Are you sure you want to delete this record?',
showDenyButton: false,
showCancelButton: true,
confirmButtonText: 'Yes'
}).then((result) => {
/* Read more about isConfirmed, isDenied below */
if (result.isConfirmed) {
$.ajax({
type: 'post',
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
url: button.data('route'),
data: {
'_method': 'delete'
},
success: function (response, textStatus, xhr) {
Swal.fire({
icon: 'success',
title: response,
showDenyButton: false,
showCancelButton: false,
confirmButtonText: 'Yes'
}).then((result) => {
window.location='/posts'
});
}
});
}
});
})
});
</script>
</head>
<body>
<div class="container mt-5">
@if(Session::get('success', false))
<?php $data = Session::get('success'); ?>
@if (is_array($data))
@foreach ($data as $msg)
<div class="alert alert-success" role="alert">
<i class="fa fa-check"></i>
{{ $msg }}
</div>
@endforeach
@else
<div class="alert alert-success" role="alert">
<i class="fa fa-check"></i>
{{ $data }}
</div>
@endif
@endif
<button class="btn btn-danger" id="multi-delete" data-route="{{ route('posts.multi-delete') }}">Delete All Selected</button>
<table class="table table-striped" id="posts-table">
<thead>
<tr>
<th scope="col"><input type="checkbox" class="check-all"></th>
<th scope="col">Title</th>
<th scope="col">Description</th>
<th scope="col">Body</th>
<th scope="col">Delete</th>
</tr>
</thead>
<tbody>
@foreach($posts as $post)
<tr>
<td><input type="checkbox" class="check" value="{{ $post->id }}"></td>
<td>{{$post->title}}</td>
<td>{{$post->description}}</td>
<td>{{$post->body}}</td>
<td>
<form method="post" class="delete-form" data-route="{{route('posts.destroy',$post->id)}}">
@method('delete')
<button type="submit" class="btn btn-danger btn-sm">Delete</button>
</form>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</body>
</html>
이 줄
<script src="plugins/Jquery-Table-Check-All/dist/TableCheckAll.js"></script>
에서 위에서 언급한 TablecCheckAll 플러그인을 다운로드하는 것을 잊지 마세요. 플러그인/폴더를 public/디렉토리에 만든 다음 Jquery-Table-Check-All용으로 다운로드한 폴더를 넣습니다.이 튜토리얼이 도움이 되었으면 합니다. 이 코드를 다운로드하려면 여기https://codeanddeploy.com/blog/laravel/how-to-delete-multiple-records-using-checkbox-in-laravel-8를 방문하십시오.
행복한 코딩 :)
Reference
이 문제에 관하여(Laravel 8의 체크박스를 사용하여 여러 레코드를 삭제하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codeanddeploy/how-to-delete-multiple-records-using-checkbox-in-laravel-8-4c0n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)