id == $o->id) // The user is the wholesaler OR $user->isWholesaler() // The user is the reseller OR $user->all_accounts()->pluck('id')->search($o->id); } /** * Determine whether the user can create services. * * @param User $user * @return mixed */ public function create(User $user) { // } /** * Determine whether the user can update the service. * * @param User $user * @param User $o * @return mixed */ public function update(User $user, User $o) { // } /** * Determine whether the user can delete the service. * * @param User $user * @param User $o * @return mixed */ public function delete(User $user, User $o) { // } /** * Determine whether the user can restore the service. * * @param User $user * @param User $o * @return mixed */ public function restore(User $user, User $o) { // } /** * Determine whether the user can permanently delete the service. * * @param User $user * @param User $o * @return mixed */ public function forceDelete(User $user, User $o) { // } }