jeudi 17 mars 2016

Working with module in laravel 5

i have install caffeinated/modules package.i have created module Admin.Within module i have created controller and make index function

<?php

class StaticPagesController extends Controller {
public function index()

{ 
    return view('welcome');
}

}

and in module's root.php i have added

Route::get('/', 'StaticPagesController@index');

How to run this? when i enter URL followed by module name it gives RouteNotFound error.

please help me.Thanks in advance.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire