check() && $user->id === $account->user_id; } public function viewAccounts(User $user): bool { return true; // return auth()->check(); } /** * Everybody can do this, but selection should limit to user. * * @return true */ public function viewAny(): bool { return true; // return auth()->check(); } }