Skip to content

Instantly share code, notes, and snippets.

@dragoonis
Last active August 29, 2015 14:27
Show Gist options
  • Save dragoonis/231fadf02f5bd1c638bc to your computer and use it in GitHub Desktop.
Save dragoonis/231fadf02f5bd1c638bc to your computer and use it in GitHub Desktop.
<?php
// mymodule/config/routes/laravel.php
use PPI\Framework\Router\LaravelRouter;
/**
* @var LaravelRouter $router
*/
$router->get('/', function() { return 'HELLO LARAVEL USER'; });
$router->get('/laravel', ['as' => 'Homepage', 'uses' => 'Application\Controller\Index@index']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment