55 lines
958 B
PHP
55 lines
958 B
PHP
<?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;
|
|
}
|
|
}
|