108 lines
2.4 KiB
PHP
108 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
use App\Models\Parameter;
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
|
|
class HasilPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
/**
|
|
* Determine whether the user can view any models.
|
|
*/
|
|
public function viewAny(User $user): bool
|
|
{
|
|
return $user->can('view_any_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view the model.
|
|
*/
|
|
public function view(User $user, Parameter $parameter): bool
|
|
{
|
|
return $user->can('view_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create models.
|
|
*/
|
|
public function create(User $user): bool
|
|
{
|
|
return $user->can('create_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the model.
|
|
*/
|
|
public function update(User $user, Parameter $parameter): bool
|
|
{
|
|
return $user->can('update_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the model.
|
|
*/
|
|
public function delete(User $user, Parameter $parameter): bool
|
|
{
|
|
return $user->can('delete_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can bulk delete.
|
|
*/
|
|
public function deleteAny(User $user): bool
|
|
{
|
|
return $user->can('delete_any_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can permanently delete.
|
|
*/
|
|
public function forceDelete(User $user, Parameter $parameter): bool
|
|
{
|
|
return $user->can('force_delete_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can permanently bulk delete.
|
|
*/
|
|
public function forceDeleteAny(User $user): bool
|
|
{
|
|
return $user->can('force_delete_any_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can restore.
|
|
*/
|
|
public function restore(User $user, Parameter $parameter): bool
|
|
{
|
|
return $user->can('restore_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can bulk restore.
|
|
*/
|
|
public function restoreAny(User $user): bool
|
|
{
|
|
return $user->can('restore_any_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can replicate.
|
|
*/
|
|
public function replicate(User $user, Parameter $parameter): bool
|
|
{
|
|
return $user->can('replicate_hasil');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can reorder.
|
|
*/
|
|
public function reorder(User $user): bool
|
|
{
|
|
return $user->can('reorder_hasil');
|
|
}
|
|
}
|