You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have relation page using ManageRelatedRecords. Below is the code example:
<?php
namespace App\Filament\Resources\TripResource\Pages;
use BezhanSalleh\FilamentShield\Traits\HasPageShield;
class ManageTripPayments extends ManageRelatedRecords
{
use HasPageShield;
public function form(Form $form): Form
{
...
}
}
Shield doesn't support relation managers atm and the HasPageShield trait isn't going to work becuase it's for filament pages. It's on the roadmap though i don't really have the time to implement it for the time being, although you are welcome to PR it if you want.
Hi,
I have relation page using
ManageRelatedRecords
. Below is the code example:Filament has documentation here https://filamentphp.com/docs/3.x/panels/resources/relation-managers#relation-pages. I've tried implement
HasPageShield
like above but not work. Do you have any solution for this case?The text was updated successfully, but these errors were encountered: