I want to use Octobercms for my laravel project. The main question is that can I use Octobercms for specific parts of my website? I mean for example single blog pages
Using October CMS for specific pages
81 Views Asked by Sahib Huseynov At
2
There are 2 best solutions below
0

This discussion may be of use to you
https://laracasts.com/discuss/channels/general-discussion/integrate-a-cms-into-laravel-5
There's a number of solutions presented in this thread. Hopefully something in here is helpful for you!
The best way is to use sub-domain method.
https://mainstite.com <- pointing to main site
https://blog.mainsite.com <- pointing to blog [
Just redirect user to blog sub-domain from main site
]This will give you more advantage and flexibility you can use
2 separate folders
As well you can have
single db
ormultiple db dedicated to blog only [october cms only]
(so maintaining blog can be easy with dedicated blog db)As from your main site you can access
blog data from blog database
also you caninsert update and delete blogs
aslaravel
can access multiple db at once.You can share session between
sub domains
as well [ plus point ].If you have any further question please comment.