The base_files is great, I have a few suggestions to add on:
Make the base model classes abstract so that no one can accidentally use it
~2. Append Base to the classname, e.g. App\Models\Base\ExampleBase.php~
~3. Create the App\Models\Example model if it does not exists and have it extend from Base\ExampleBase~
The
base_files
is great, I have a few suggestions to add on:abstract
so that no one can accidentally use it ~2. AppendBase
to the classname, e.g.App\Models\Base\ExampleBase.php
~ ~3. Create theApp\Models\Example
model if it does not exists and have it extend fromBase\ExampleBase
~Seems 2 and 3 already happening.