bezhanSalleh / filament-shield

The easiest and most intuitive way to add access management to your Filament Admin Resources, Pages & Widgets through `spatie/laravel-permission`
MIT License
1.6k stars 180 forks source link

Not worked in nested resources #393

Closed shankhadevpadam closed 4 months ago

shankhadevpadam commented 4 months ago

I have created nested resources like this

Screenshot

My problem is, that I want to give permission to userA only access to view the passport of QLD and userB who can only view the passport of WA

Screenshot from 2024-06-07 17-33-44

PassportPolicy.php

<?php

namespace App\Filament\Resources\Passports\Policies;

use App\Filament\Shared\Models\User;
use App\Filament\Resources\Passports\Models\Passport;
use Illuminate\Auth\Access\HandlesAuthorization;

class PassportPolicy
{
    use HandlesAuthorization;

    /**
     * Determine whether the user can view any models.
     */
    public function viewAny(User $user): bool
    {
        return $user->can('view_any_w::a');
    }

    /**
     * Determine whether the user can view the model.
     */
    public function view(User $user, Passport $passport): bool
    {
        return $user->can('view_w::a');
    }

    /**
     * Determine whether the user can create models.
     */
    public function create(User $user): bool
    {
        return $user->can('create_w::a');
    }

    /**
     * Determine whether the user can update the model.
     */
    public function update(User $user, Passport $passport): bool
    {
        return $user->can('update_w::a');
    }

    /**
     * Determine whether the user can delete the model.
     */
    public function delete(User $user, Passport $passport): bool
    {
        return $user->can('delete_w::a');
    }

    /**
     * Determine whether the user can bulk delete.
     */
    public function deleteAny(User $user): bool
    {
        return $user->can('delete_any_w::a');
    }

    /**
     * Determine whether the user can permanently delete.
     */
    public function forceDelete(User $user, Passport $passport): bool
    {
        return $user->can('force_delete_w::a');
    }

    /**
     * Determine whether the user can permanently bulk delete.
     */
    public function forceDeleteAny(User $user): bool
    {
        return $user->can('force_delete_any_w::a');
    }

    /**
     * Determine whether the user can restore.
     */
    public function restore(User $user, Passport $passport): bool
    {
        return $user->can('restore_w::a');
    }

    /**
     * Determine whether the user can bulk restore.
     */
    public function restoreAny(User $user): bool
    {
        return $user->can('restore_any_w::a');
    }

    /**
     * Determine whether the user can replicate.
     */
    public function replicate(User $user, Passport $passport): bool
    {
        return $user->can('replicate_w::a');
    }

    /**
     * Determine whether the user can reorder.
     */
    public function reorder(User $user): bool
    {
        return $user->can('reorder_w::a');
    }
}