feat: updates

This commit is contained in:
JP
2024-08-15 20:11:21 +08:00
parent 52431a2c61
commit 3af7207ec3
61 changed files with 1674 additions and 480 deletions

View File

@@ -0,0 +1,108 @@
<?php
namespace App\Policies;
use App\Models\Branch;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class BranchPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->can('view_any_branch');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Branch $branch): bool
{
return $user->can('view_branch');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->can('create_branch');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Branch $branch): bool
{
return $user->can('update_branch');
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Branch $branch): bool
{
return $user->can('delete_branch');
}
/**
* Determine whether the user can bulk delete.
*/
public function deleteAny(User $user): bool
{
return $user->can('delete_any_branch');
}
/**
* Determine whether the user can permanently delete.
*/
public function forceDelete(User $user, Branch $branch): bool
{
return $user->can('force_delete_branch');
}
/**
* Determine whether the user can permanently bulk delete.
*/
public function forceDeleteAny(User $user): bool
{
return $user->can('force_delete_any_branch');
}
/**
* Determine whether the user can restore.
*/
public function restore(User $user, Branch $branch): bool
{
return $user->can('restore_branch');
}
/**
* Determine whether the user can bulk restore.
*/
public function restoreAny(User $user): bool
{
return $user->can('restore_any_branch');
}
/**
* Determine whether the user can replicate.
*/
public function replicate(User $user, Branch $branch): bool
{
return $user->can('replicate_branch');
}
/**
* Determine whether the user can reorder.
*/
public function reorder(User $user): bool
{
return $user->can('reorder_branch');
}
}