Rik Verbeek

Results 3 issues of Rik Verbeek

The following code works: `$router->post('/api/social/contact', 'SocialController@contact');` But this code doesn't: ``` $router->mount('/api', function() use($router) { $router->mount('/social', function() use($router) { $router->post('/contact', 'SocialController@contact'); }); }); ``` Note that there is no method...

Hi, I have tried both versions 0.0.1 and 0.0.2. The issue I had with 0.0.2 was that the app did start up but did crash immediately. The 0.0.1 version will...

Hi Devnix, After I successfullybuild the container and navigate to the localhost:80 I get a 403 Forbidden page, any idea what might cause this?