Skip to content

Instantly share code, notes, and snippets.

@ulcuber
Created July 27, 2018 20:33
Show Gist options
  • Save ulcuber/a8c7b9519ed1d04685957a3d6cb7b224 to your computer and use it in GitHub Desktop.
Save ulcuber/a8c7b9519ed1d04685957a3d6cb7b224 to your computer and use it in GitHub Desktop.
Shorter way
<?php
// assume
Route::resource('groups.students', 'StudentController');
// Instead of this
route('groups.students.show', ['group' => $group->id, 'student'=> $student->id]);
// use this
route('groups.students.show', [$group, $student]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment