コード例 #1
0
ファイル: MastersController.php プロジェクト: zheralfin/oras
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     Master::destroy($id);
     return redirect('/masters');
 }