Results 379 comments of Chris Brown

Actually, probably should use: `8.0.0-beta.1` `composer require dyrynda/laravel-model-uuid:8.0.0-beta.1` (7.x-dev "works" because composer.json contains an alias for it, but they'll probably update that to 8.x-dev when 8.0 is officially released)

Adding a demo of the API Resource support in 5.5 is a good idea. Willing to collaborate to put one together. Wanna help? I'd like to address your `namespacing` question,...

Great! If you're okay with the demo leveraging what's already here in this demo, shall we just do it right here, using PRs? I'll clone `master` into `api` as a...

Excellent.

One challenge is determining "how long does 'temporary' mean?" Also, if the account is temporary, could we just exclude lookups in the `Customer::doLoginLookupByEmail()` function?

Question: Why is strict-typing even important in this context? You're right that the db query returns a string, so all comparisons against db results in these and related functions need...

> @404labfr please try to update PHP version from `^8.0` to `^8.1` in `require` section of `composer.json` file. That's not necessary. The `^` in `^8.0` means "8.0 or higher, including...

To clarify: Are you asking for a way to check whether **another** user is logged-in via impersonation? This package currently only exposes that the **current** user is logged-in via impersonation....

> Sorry, no I meant just to check if the current user is currently an imposter - as you said, you can find out by checking a session variable. so...

I've done it similarly: ```php //User.php model /** * Return true or false whether the user can be impersonated. * Here we deny impersonation of oneself as that would be...