CourseWork/app/Policies/SubjectPolicy.php

35 lines
705 B
PHP
Raw Normal View History

2024-06-22 23:59:16 +04:00
<?php
namespace App\Policies;
use App\Models\Admin;
use App\Models\Subject;
use App\Models\User;
class SubjectPolicy
{
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->userable_type == Admin::class;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Subject $subject): bool
{
return $user->userable_type == Admin::class;
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Subject $subject): bool
{
return $user->userable_type == Admin::class;
}
}