Exemplo n.º 1
0
 public function delete(Note $note)
 {
     $note->delete();
     return redirect()->route('registration.notes.index', $note->registration_step_id)->with('success', trans('registration::notes.delete_success', ['name' => $note->name]));
 }