Laravel функция update и destroy, как обновлять и удалять данные когда связь many to many?
сразу говорю я новичек.
public function update(Request $request, $id)
{
Book::where('id', $id)->update($request->all());
Author::where('name', 'id', $id)->update($request->all());
return redirect()->route('books.index')
->with('success','Книга обновлена');
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
$book = Book::find($id);
$book->delete();
return redirect('/books')->with('success','Книга удалена');
}