Chris Brown
Chris Brown
Are there some parts of this article in the documentation that may help? https://spatie.be/docs/laravel-permission/v6/advanced-usage/uuid
> So the new settings conflicts with the Laravel's default string length and validations, which is 255. So either we have to update the validations to 125 or ... I...
Right. I'm digging to collect enough information in order to convey the requirements as accurately as possible, without making the documentation extra-long. I guess perhaps the simplest approach is to...
Another thought: What's the actual max length "needed" for `guard_name`? Do people really need to accommodate 255 or 125 character guard names? Most applications I've seen use 3 chars ('web',...
Or ... what's the way to query MySQL for the max index length the current db host supports for a given table? Maybe we can query that in the migration...
Over the years, in this package we've gone back and forth between eager-loading and lazy-loading relations under various conditions. Presently we unset the relations after certain operations in order to...
> somehow hook into when the 'roles' relationship is loaded and save the current team ID to a field on the model, then, we only need to reload the roles...
> I'd entertain a discussion which could lead to a tested PR about offering a configuration flag (perhaps use_lazy_loading) where the developer could tell the package that all lazy-loading has...
If the situation in your app is because data is stale due to not lazy-loading, then if we are intentional to eager-load in the right places when that feature is...
Related #1094 , #2412