-
Notifications
You must be signed in to change notification settings - Fork 5
FAQ
Jeff Simons Decena edited this page Jul 22, 2016
·
1 revision
A: When you run the php artisan vendor:publish, it publishes the cms blade template files including the admin templates. You can see it in /resources/views/vendor/cms.
A: You can override that by having your the routes in your routes.php file and the controller that will handle it.
By default, the /blog page is handled by Jsdecena\Cms\Http\Controllers\CmsController@index.
If you want to override it, you just create an entry to your routes.php file with Resource::get('/blog', ['as' => 'blog.index', 'uses' => 'CMSController@index']) where the CMSController is found in your /app/Http/Controllers/CMSController
