59 lines
975 B
PHP
59 lines
975 B
PHP
<?php
|
|
|
|
namespace App\Policies\WorkOrder;
|
|
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
use Illuminate\Auth\Access\Response;
|
|
|
|
class ReplyPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
/**
|
|
* Determine whether the user can view any models.
|
|
*
|
|
*
|
|
* @return Response|bool
|
|
*/
|
|
public function viewAny(): Response|bool
|
|
{
|
|
//
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create models.
|
|
*
|
|
*
|
|
* @return Response|bool
|
|
*/
|
|
public function create(): Response|bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the model.
|
|
*
|
|
*
|
|
* @return Response|bool
|
|
*/
|
|
public function update(): Response|bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the model.
|
|
*
|
|
*
|
|
* @return Response|bool
|
|
*/
|
|
public function delete(): Response|bool
|
|
{
|
|
//
|
|
return false;
|
|
}
|
|
}
|