You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Seems 2 and 3 already happening.
The text was updated successfully, but these errors were encountered:
The
base_files
is great, I have a few suggestions to add on:abstract
so that no one can accidentally use it2. 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.
The text was updated successfully, but these errors were encountered: