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
Since ownership is handled by key on the Organization model, you could just use relation for this. Ownership checks if Organization has user_id (by default) with value of authenticated user. If so, that user owns this model.
In laravel 11 I am assigning ownership to an organization like below.
$organization = Organization::create(['name' => 'Test Org']);
Bouncer::allow($user)->toOwn($organization);
Question 1: How can I see which organizations I have ownership rights after logging in.
Ex: $user->owns()
Question 2: How do I check if the user has ownership rights on any organization after login?
Ex: $user->isOwnedFor($organization)
The text was updated successfully, but these errors were encountered: