@s3w47m88 I've been using Laravel for years, and also was resistant to CMS. But now, I'm enjoying October because I can use Builder, add a table, define my columns and migrate, and define a form and list, takes about 5 minutes.
Before, every time I add a model, I have to create a migration, code it out, build my model file, migrate. Create a controller file. Add all the usual suspects (show, create, edit...). Create all those pages, code all the forms, add all the validation, add all the routes, etc.
In the end, I might have the same product, but this is all "the same thing" over and over and takes hours of development time that could have been finished in minutes.
Plus, I can get out of the backend website and edit my code directly so I feel (as a developer) that I'm still in control and not at the mercy of the system. But I can also have a non-developer admin go in and update the look of the page or add a column.
Now I'm just unsure if I want an API with a Vue frontend if this is the best way, or use Lumen to keep the backend as small as possible, but again, Lumen takes more coding time. It's lightweight because there isn't much there and I have to code out all the things that Laravel has out of the box, and then October automates a lot of that on top of Laravel. So I guess it becomes a time/effort vs. size/resource decision?