canDo('offplan.floorplan.action.copy')) { return true; } $this->model->is_owner; } /** * Determine if the given user can empty the given floorplan. * * @param Authenticatable $user * * @return bool */ function empty(Authenticatable $user, Floorplan $floorplan) { if ($authUser->canDo('offplan.floorplan.action.empty')) { return true; } $this->model->is_owner; } /** * Determine if the given user can transfer the given floorplan. * * @param Authenticatable $user * * @return bool */ public function transfer(Authenticatable $user, Floorplan $floorplan) { if ($authUser->canDo('offplan.floorplan.action.transfer')) { return true; } $this->model->is_owner; } }