Я создаю веб-страницу, используя Laravel 5.6.Я закодировал на веб-страницу, которая является ПолисомПоле id
- это Foreign Key
.Это из Policies
таблицы.Но когда я запускаю и нажимаю кнопку удаления, запись не удаляется, и я получаю сообщение об ошибке "Internal server Error
и Error:1 GET http://127.0.0.1:8000/Error 404 (Not Found)
"
policycover.blade.php
<td>
<button type="button" class="btn btn-danger btn-xs delpolicycover" data-id="{{$value->id}}"><i class="fa fa-trash"></i>Delete</button>
</td>
Маршрут
Route::post('/delpolicycoverdata', 'PolicyCoverController@destroy')->name('delpolicycoverdata');
dashboard.blade.php
<script>
$(document).on('click', '.delpolicycover', function()
{
swal(
{
title: "Are you sure?",
text: "Once deleted, you will not be able to recover this imaginary file!",
icon: "warning",
buttons: true,
dangerMode: true,
})
.then((willDelete) =>
{
if (willDelete)
{
var deldata = new FormData();
console.log($("#tokenedit").val());
deldata.append('id', $(this).data('id'));
console.log('id', $(this).data('id'));
deldata.append('_token', $("#tokenedit").val());
$.ajax(
{
type: "post",
data: deldata,
cache: false,
processData: false,
contentType: false,
url: "<?php echo url('/delpolicycoverdata') ?>",
success: function(data)
{
swal("Poof! Your imaginary file has been deleted!",
{
icon: "success",
});
$('#brc' + data).remove();
},
error: function(json)
{
console.log(json);
swal("Error!!",
{
icon: "Error",
});
}
});
}
else
{
swal("Your imaginary file is safe!");
}
});
});
$(document).on("click", ".viewpolicycover", function()
{
$('#vieid').val($(this).data('id'));
$('#viname').val($(this).data('name'));
$('#videscr').val($(this).data('descr'));
$('#policyviewmodel').modal('show');
});
</script>
PolicyCoverController.php
public function destroy(Request $request)
{
$policycover = PolicyCover::find($request->id);
$policecover->delete();
return response()->json($request->id);
}