コード例 #1
0
ファイル: StepsController.php プロジェクト: alkindi91/DARES
 public function delete(Step $step)
 {
     $step->delete();
     return redirect()->route('registration.steps.index')->with('success', trans('registration::steps.delete_success', ['name' => $step->name]));
 }