File: /home/lenf4658/public_html/unukaltim.lensapedia.id/unukaltim/app/Policies/WebBannerPolicy.php
<?php
namespace App\Policies;
use App\Models\User;
use App\Models\WebBanner;
use Illuminate\Auth\Access\HandlesAuthorization;
class WebBannerPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->can('view_any_web::banner');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, WebBanner $webBanner): bool
{
return $user->can('view_web::banner');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->can('create_web::banner');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, WebBanner $webBanner): bool
{
return $user->can('update_web::banner');
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, WebBanner $webBanner): bool
{
return $user->can('delete_web::banner');
}
/**
* Determine whether the user can bulk delete.
*/
public function deleteAny(User $user): bool
{
return $user->can('delete_any_web::banner');
}
/**
* Determine whether the user can permanently delete.
*/
public function forceDelete(User $user, WebBanner $webBanner): bool
{
return $user->can('{{ ForceDelete }}');
}
/**
* Determine whether the user can permanently bulk delete.
*/
public function forceDeleteAny(User $user): bool
{
return $user->can('{{ ForceDeleteAny }}');
}
/**
* Determine whether the user can restore.
*/
public function restore(User $user, WebBanner $webBanner): bool
{
return $user->can('{{ Restore }}');
}
/**
* Determine whether the user can bulk restore.
*/
public function restoreAny(User $user): bool
{
return $user->can('{{ RestoreAny }}');
}
/**
* Determine whether the user can replicate.
*/
public function replicate(User $user, WebBanner $webBanner): bool
{
return $user->can('{{ Replicate }}');
}
/**
* Determine whether the user can reorder.
*/
public function reorder(User $user): bool
{
return $user->can('{{ Reorder }}');
}
}