コード例 #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $programStudies = ProgramStudy::find($id);
     $programStudies->delete();
     Session::flash('message', 'You have successfully deleted program study');
     return Redirect::to('dashboard/admin/program-studies');
 }