I have a laravel install, setup as a new CMS.
The frontend of the site is a pretty complex old website. The new CMS is going to take over a portion of it, but migrating everything to Laravel isn't an option.
I understand that I can use https://packagist.org/packages/illuminate/database to enable Eloquent and make database queries. However, what this doesn't include is the models I've already created as part of the CMS.
So on the same server I have:
/var/www/laravel-cms/
<- Laravel based CMS/var/www/website.com/
<- Custom PHP Project
How can I use my models created in laravel-cms
on website.com
?