Path : /var/www/clients/client0/web25/web/app/Policies/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/app/Policies/CommentPolicy.php |
<?php namespace App\Policies; use App\Models\Comment; use App\Models\User; use Illuminate\Auth\Access\HandlesAuthorization; class CommentPolicy { use HandlesAuthorization; protected function manage(User $user, Comment $comment) { return $user->isAdmin() ?: $user->id === $comment->post->user_id || $user->id === $comment->user_id; } /** * Determine whether the user can view any models. * * @param \App\Models\User $user * @return \Illuminate\Auth\Access\Response|bool */ public function viewAny(User $user) { return true; } /** * Determine whether the user can view the model. * * @param \App\Models\User $user * @param \App\Models\Comment $comment * @return \Illuminate\Auth\Access\Response|bool */ public function view(User $user, Comment $comment) { return true; } /** * Determine whether the user can create models. * * @param \App\Models\User $user * @return \Illuminate\Auth\Access\Response|bool */ public function create(User $user) { // } /** * Determine whether the user can update the model. * * @param \App\Models\User $user * @param \App\Models\Comment $comment * @return \Illuminate\Auth\Access\Response|bool */ public function update(User $user, Comment $comment) { return $this->manage($user, $comment); } /** * Determine whether the user can delete the model. * * @param \App\Models\User $user * @param \App\Models\Comment $comment * @return \Illuminate\Auth\Access\Response|bool */ public function delete(User $user, Comment $comment) { return $this->manage($user, $comment); } /** * Determine whether the user can restore the model. * * @param \App\Models\User $user * @param \App\Models\Comment $comment * @return \Illuminate\Auth\Access\Response|bool */ public function restore(User $user, Comment $comment) { // } /** * Determine whether the user can permanently delete the model. * * @param \App\Models\User $user * @param \App\Models\Comment $comment * @return \Illuminate\Auth\Access\Response|bool */ public function forceDelete(User $user, Comment $comment) { // } }