Skip to content

Instantly share code, notes, and snippets.

@vanchelo
Created August 19, 2014 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanchelo/6a79cd124b8de46778bd to your computer and use it in GitHub Desktop.
Save vanchelo/6a79cd124b8de46778bd to your computer and use it in GitHub Desktop.
Именование роутов при использовании Route::controller
<?php
Route::controller('admin', 'AdminController', [
'getIndex' => 'index',
'getUsers' => 'users'
]);
@vanchelo
Copy link
Author

Т.е.

'названиеМетода' => 'имя_роута'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment