From 2915aebdc9f63787486d6daaa4d3cf22a88baade Mon Sep 17 00:00:00 2001 From: "Ralph J. Smit" <59207045+ralphjsmit@users.noreply.github.com> Date: Thu, 10 Nov 2022 17:54:41 +0100 Subject: [PATCH] Fix Unable to locate a class or view for component [filament-support::grid] --- tests/TestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index a9fef56..59585f9 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -3,6 +3,7 @@ namespace RalphJSmit\Filament\Components\Tests; use Filament\Forms\FormsServiceProvider; +use Filament\Support\SupportServiceProvider; use Livewire\LivewireServiceProvider; use Orchestra\Testbench\TestCase as Orchestra; use RalphJSmit\Filament\Components\FilamentComponentsServiceProvider; @@ -20,6 +21,7 @@ protected function getPackageProviders($app) FilamentComponentsServiceProvider::class, LivewireServiceProvider::class, FormsServiceProvider::class, + SupportServiceProvider::class, ]; }