isMe()) { return $this->allow(); } return null; } /** * Determine whether the user can view any models. */ public function viewAny(User $user): Response { if ($user->hasRole(['admin'])) { return $this->allow(); } return $this->deny(); } /** * Determine whether the user can view the model. */ public function view(User $user, Channel $channel): Response { if ($user->hasRole(['admin'])) { return $this->allow(); } return $this->deny(); } /** * Determine whether the user can create models. */ public function create(User $user): Response { if ($user->hasRole(['admin'])) { return $this->allow(); } return $this->deny(); } /** * Determine whether the user can update the model. */ public function update(User $user, Channel $channel): Response { if (tmpostChannel()->slug === $channel->slug) { return $this->deny(); } return $this->deny(); } /** * Determine whether the user can delete the model. */ public function delete(User $user, Channel $channel): Response { if (tmpostChannel()->slug === $channel->slug) { return $this->deny(); } if ($user->hasRole(['admin'])) { return $this->allow(); } return $this->deny(); } /** * Determine whether the user can restore the model. */ public function restore(User $user, Channel $channel): Response { if ($user->hasRole(['admin'])) { return $this->allow(); } return $this->deny(); } /** * Determine whether the user can permanently delete the model. */ public function forceDelete(User $user, Channel $channel): Response { if ($user->hasRole(['admin'])) { return $this->allow(); } return $this->deny(); } }