Skip to content

Instantly share code, notes, and snippets.

View haleyngonadi's full-sized avatar

haley. haleyngonadi

  • Canada
View GitHub Profile
<?php
...
Router::scope('/artist', ['controller' => 'Artists'], function ($routes) {
$routes->connect('/:id/:name', ['action' => 'view'], ['pass' => ['id']]);
});