photogeodata/app/Policies/PhotoGeoDataPolicy.php
2026-05-12 20:43:17 +02:00

71 lines
1.4 KiB
PHP

<?php
namespace App\Policies;
use App\Models\User;
use App\Models\PhotoGeoData;
class PhotoGeoDataPolicy
{
/**
* Create a new policy instance.
*/
public function __construct()
{
}
public function viewAny(User $user): bool
{
return true;
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, User $model): bool
{
return $user->role === 'admin';
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return true;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, PhotoGeoData $record): bool
{
return $user->role === 'admin';
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, PhotoGeoData $record): bool
{
return $user->role === 'admin';
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, PhotoGeoData $record): bool
{
return $user->role === 'admin';
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, PhotoGeoData $record): bool
{
return $user->role === 'admin';
}
}