Update v3
I can't update the domain en domains, what should I do ?
I've done a composer update and a filament:upgrade but it still doesn't update the HasRoutes folder.
24 Replies
I don't understand the issue... what is not being updated exactly?
I got the error Bad Method Call: Did you mean Filament\Panel::getDomain() ?. I can't update to the latest version of filament php. I know that now the function must I named getDomains() how to do?
I'm not sure, have you tried
php artisan optimize:clear
?yes, and I still get the error that the HasRoutes file doesn't update from getDomain() to getDomains() @pboivin
Which version of filament exactly? Can you run
php artisan about
.My error is that the HasRoutes file is not up to date, it keeps the getDomain() function when it should be getDomains().
Make sure you really are on the latest v3 version of Filament and not on an alpha version.
I'm on v3.0.8
we are on .24 by now
How can I upgrade to .24?
composer update?
I still have the same problem with getDomains() 😦
Then you are very probable still not on the latest version.
Here's my composer.json, I deleted the vendor and redid composer update and I still get the error, is there an error in my composer.json?
Looks fine if all the plugins are compatible. But doesn't say anything about the real installed version. Do a
composer info filament/filament
and check for the real version.I can't get any version other than 3.0.8.
Then probably some of your dependencies block the update. Try
composer update -W
No, it's always the same. Could it be because I'm using Laravel 9 and not 10 ?
Oh right. I missed that one.
LW requires Laravel 10 now, so we follow that
Ok, thank you very much for your help, I'll try with laravel 10 sorry for the inconvenience.