Files
site/app/Policies/ReasonPolicy.php

105 lines
2.1 KiB
PHP
Executable File

<?php
namespace App\Policies;
use App\Domain\Complaints\Models\Reason;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class ReasonPolicy
{
use HandlesAuthorization;
public function before(User $user)
{
if ($user->hasRole('administrators')) {
return true;
}
}
/**
* Determine whether the user can view any models.
*
* @param \App\Models\User $user
* @return mixed
*/
public function viewAny(User $user)
{
if ($user->hasRole('moderator')) {
return true;
}
}
/**
* Determine whether the user can view the model.
*
* @param \App\Models\User $user
* @param \App\Models\Reason $reason
* @return mixed
*/
public function view(User $user, Reason $reason)
{
if ($user->hasRole('moderator')) {
return true;
}
}
/**
* Determine whether the user can create models.
*
* @param \App\Models\User $user
* @return mixed
*/
public function create(User $user)
{
//
}
/**
* Determine whether the user can update the model.
*
* @param \App\Models\User $user
* @param \App\Models\Reason $reason
* @return mixed
*/
public function update(User $user, Reason $reason)
{
//
}
/**
* Determine whether the user can delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Reason $reason
* @return mixed
*/
public function delete(User $user, Reason $reason)
{
//
}
/**
* Determine whether the user can restore the model.
*
* @param \App\Models\User $user
* @param \App\Models\Reason $reason
* @return mixed
*/
public function restore(User $user, Reason $reason)
{
//
}
/**
* Determine whether the user can permanently delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Reason $reason
* @return mixed
*/
public function forceDelete(User $user, Reason $reason)
{
//
}
}