Set table to use for filament resource
I am trying to use Filament with Laravel Permissions and have run into an issue. I set the model relationship manually
It seems Filament added an additional
protected static ?string $model = Model_Has_Roles::class; as that's what the table is called. However when I try to access it I get the following error:It seems Filament added an additional
_ between each word as it should be model_has_roles. I tried to search the documentation but, didn't find anything at the time. Could someone please steer me in the right direction?