Я работаю с Laravel 5 и пытаюсь удалить некоторые данные из базы данных
HTML
<form method="post" action="{{route('publications.destroy', $publication->id)}}">
{{csrf_field()}}
{{method_field('DELETE')}}
<button type="submit" class="btn btn-danger btn-sm" dusk="btn-confirmDeletePub">Yes, Delete</button>
</form>
web.php
Route::resource('publications','PublicationController');
Publication.php (модель)
public function users()
{
return $this->belongsToMany('App\User', 'user_publication');
}
public function topics()
{
return $this->belongsToMany('App\Topic', 'topic_publication');
}
public function authors()
{
return $this->belongsToMany('App\Author', 'author_publication');
}
public function details()
{
/*
Since we must join the publications table with one of the
journals/conference/editorship table (based on type column' value)
to retrieve publication'details, we "aggregate" the 3 alternatives in this method.
this method is useful for retrieving from db,
for insertions, the 3 methods above ( journal(),conference(),editorship())
should be used
*/
switch ($this->type) {
case 'journal':
return $this->hasOne('App\Journal');
break;
case 'conference':
return $this->hasOne('App\Conference');
break;
case 'editorship':
return $this->hasOne('App\Editorship');
break;
}
}
PublicationController.php
public function destroy($id)
{
$publication = Publication::find($id);
$publication->users()->detach($publication->id);
$publication->topics()->detach($publication->id);
$publication->authors()->detach($publication->id);
//dd($publication);
$publication->details()->delete();
//$publication->delete();
//Redirect('/users')->with('success', 'Publication deleted correctly.');
return redirect('/users')->with('success', 'Publication deleted correctly.');
}
Когда я нажимаю кнопку Yes, Delete
в форме HTML, она вызывает метод destroy
в PublicationController
, чтобы удалить публикацию с указанным идентификатором. Я попытался прокомментировать весь код и оставить только return redirect
, чтобы увидеть, вызывается ли метод, и он работает.
После этого я удалил комментарии к функциям detach()
, но по необъяснимым причинам в базе данных они не дают никаких результатов. Наконец, я удалил комментарий в $publication->details()->delete();
, и мое приложение вылетало.