canDo('o_m_i_d.advertising.view') && $user->isAdmin()) { return true; } return $advertising->user_id == user_id() && $advertising->user_type == user_type(); } /** * Determine if the given user can create a advertising. * * @param UserPolicy $user * @param Advertising $advertising * * @return bool */ public function create(UserPolicy $user) { return $user->canDo('o_m_i_d.advertising.create'); } /** * Determine if the given user can update the given advertising. * * @param UserPolicy $user * @param Advertising $advertising * * @return bool */ public function update(UserPolicy $user, Advertising $advertising) { if ($user->canDo('o_m_i_d.advertising.update') && $user->isAdmin()) { return true; } return $advertising->user_id == user_id() && $advertising->user_type == user_type(); } /** * Determine if the given user can delete the given advertising. * * @param UserPolicy $user * @param Advertising $advertising * * @return bool */ public function destroy(UserPolicy $user, Advertising $advertising) { return $advertising->user_id == user_id() && $advertising->user_type == user_type(); } /** * Determine if the given user can verify the given advertising. * * @param UserPolicy $user * @param Advertising $advertising * * @return bool */ public function verify(UserPolicy $user, Advertising $advertising) { if ($user->canDo('o_m_i_d.advertising.verify')) { return true; } return false; } /** * Determine if the given user can approve the given advertising. * * @param UserPolicy $user * @param Advertising $advertising * * @return bool */ public function approve(UserPolicy $user, Advertising $advertising) { if ($user->canDo('o_m_i_d.advertising.approve')) { return true; } return false; } /** * Determine if the user can perform a given action ve. * * @param [type] $user [description] * @param [type] $ability [description] * * @return [type] [description] */ public function before($user, $ability) { if ($user->isSuperuser()) { return true; } } }