fix: fix some routes and validations (#1991)

This commit is contained in:
Alexis Saettler
2018-11-07 22:20:47 +01:00
committed by GitHub
parent 1abe45a12c
commit c8941e4a92
52 changed files with 242 additions and 249 deletions
@@ -14,7 +14,7 @@ class NotesController extends Controller
/**
* Get all the tasks of this contact.
*/
public function get(Contact $contact)
public function index(Contact $contact)
{
$notesCollection = collect([]);
$notes = $contact->notes()->latest()->get();