Files
Verde-Web/app/Policies/StoreSalePolicy.php

75 lines
1.6 KiB
PHP

<?php
namespace App\Policies;
use App\Models\StoreSale;
use App\Models\User;
use Illuminate\Auth\Access\Response;
class StoreSalePolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return false;
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, StoreSale $storeSale): bool
{
if ($user->role === User::ROLE_ADMIN) {
return $user->tenant_id === $storeSale->store?->tenant_id;
}
if ($user->role === User::ROLE_STORE_PARTNER) {
return $user->id === $storeSale->store?->owner_user_id;
}
return false;
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return false;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, StoreSale $storeSale): bool
{
return false;
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, StoreSale $storeSale): bool
{
return false;
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, StoreSale $storeSale): bool
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, StoreSale $storeSale): bool
{
return false;
}
}