getting this error?
Unable to locate a class or view for component [filament-actions::modals]. (View: /Users/ranium/Desktop/email-templates/vendor/filament/tables/resources/views/index.blade.php) (View: /Users/ranium/Desktop/email-templates/vendor/filament/tables/resources/views/index.blade.php)
10 Replies
Cool..
Any solutions ?
Please put more effort in your message. Where does this error happen? What is the context of your project?
You have to help us help you
Published any views?
Did you run
artisan filament:upgrade
?command not found.. lol
I am working in plugin ( not in laravel app ), in this plugin i write testcase like this.
it('can list email templates', function () {
$emailTemplates = EmailTemplate::factory()->count(10)->create();
livewire(ListEmailTemplates::class)
->assertCanSeeTableRecords($emailTemplates);
});
then i got this errordid you publish the views?
Not completely sure but I think you're missing the
ActionsServiceProvider
in your test case setup.okay will check