class Role extends RoleBase {
// Override if required
protected $fillable = [
'tenant_id',
'name',
'description',
'is_default',
'permissions'
];
}
I hope this is a very good feature to be implemented and will be very useful for bigger projects and make reliese a very good tool for long term in every project
I believe having base files should not repeat the models but the base files should be used as the parent class for the Models
This will keep all the auto generated values in Base File abstract which can be re-generated to make sync
/Models/Base/Role.php
/Models/Role.php
I hope this is a very good feature to be implemented and will be very useful for bigger projects and make reliese a very good tool for long term in every project
👍