Description
Details
Hello, first of all i want to thank for your work.
I got this error when i install/update laravel package
Typed static property Filament\Resources\Pages\Page::$resource must not be accessed before initialization
It seems the issue is with upgrading the filament to v3 as the documentation says
Update Filament v3 Resource Class Initialization
Description:
Fix the static property initialization error in Filament resources by updating the resource class definitions to match Filament v3 requirements. The error Typed static property Filament\Resources\Pages\Page::$resource must not be accessed before initialization
occurs due to incompatible resource class structure.
Tasks:
-
In
app/Filament/App/Resources/ReminderSettingResource.php
:- Add static property initialization at class level
- Update navigation properties to use proper static typing
-
In
app/Filament/App/Resources/ActivationResource.php
:- Add static property initialization
- Fix BelongsTo column definition in table schema
-
In
app/Filament/App/Resources/CompanyResource.php
:- Add static property initialization
- Update ImageColumn usage in form schema
-
In
app/Filament/App/Resources/AssetResource.php
:- Add static property initialization
- Update navigation properties
-
In
app/Filament/App/Resources/SupplierResource.php
:- Add static property initialization
- Update BelongsToSelect component configuration
Test:
- Add test case in
tests/Feature/Resources/ResourceInitializationTest.php
:- Test resource page loading
- Test navigation registration
- Test form rendering
- Test table rendering