Prime-Chat/app/Policies/NewsPolicy.php

55 lines
958 B
PHP
Raw Normal View History

2024-12-19 07:21:23 +04:00
<?php
namespace App\Policies;
use App\Models\News;
use App\Models\User;
use Illuminate\Auth\Access\Response;
class NewsPolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return true;
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
if ($user->isAdmin) {
return true;
}
return false;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, News $news): bool
{
if ($user->isAdmin) {
return true;
}
return false;
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, News $news): bool
{
if ($user->isAdmin) {
return true;
}
return false;
}
}