jeudi 16 février 2017

Laravel BoilerPlate : Defining Route

I have used Laravel Boilerplate for development of my application. Beside that I have installed L5Modular with it. So i define the route Like following inside my Modules

<?php

Route::group(array('module' => 'test', 'middleware' => ['web','auth'], 'prefix'=>'frontend','namespace' => 'App\Modules\test\Controllers'), function() {

    Route::resource('test', 'TestController');

}); 

But when i tried to access the route http://localhost/blog/public/test/cerate it's showing 404 Error.

Why my route not accessed? is there any error of defining route?



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2lUKvc5
via IFTTT

Aucun commentaire:

Enregistrer un commentaire