ingeday
ingeday
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
I've set up the Vagrant environment, and it worked. I haven't heard of Herd. This weekend, I'll be checking out Herd. Thanks a lot.
19 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
Because it's bothersome to restart php artisan serve for every request during development.
19 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
But, Because of I could run the project correctly in a host, so I am installing a vagrant environment right now
19 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
Sometimes, there are errors when calling any PHP function. It's crazy.
19 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
running the project under apache It does not run artisan serve
19 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
Sure, but artisan serve is available within each Laravel project. No? And my apache got crashed too.
19 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
I am here again... I've been working on it all day. I realized that the code of the project works correctly when it's hosted, but it doesn't work on my computer, neither when using php artisan serve nor Apache. For now, my conclusion is that something on my system is affecting my project with Filament. It might be Composer, Node, or the PHP module or something else. The only thing I did yesterday was set up a self-hosted action runner on GitHub to work with the project. Everything is a little strange, but for now, I've discarded the idea that it was due to the updating process. Thanks a lot.
19 replies
FFilament
Created by ingeday on 11/6/2024 in #❓┊help
open a modal from a navigationitem
I will see it. Thank you.
9 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
Hello. I have done that right now. I installed a clean project Laravel, then installed filament and the panels just following this link https://filamentphp.com/docs/3.x/panels/installation Later, I copied theese files: migrations/..., seeds/... and factories/.. and run php artisan migrate --seed and the project worked. Later I copied a resources (User Resources) - UserResource.php - UserResource/CreateUser.php - UserResource/EditUser.php - UserResource/ListUsers.php And I have something like the video I've attached.
19 replies
FFilament
Created by Carbon on 10/26/2024 in #❓┊help
Server Crashes After Resource Update/Edit
I have a similar scenario. My development server "php artisan serve" or even apache got crashed. I looks like a incompatibility with livewire. Just checking it out I see this: I use
@livewire(App\Filament\Resources\QuotationResourcesResource\Widgets\AllQuotations::class)
@livewire(App\Filament\Resources\QuotationResourcesResource\Widgets\AllQuotations::class)
The first times ALL is OK, then when It got crashed, an error is related with livewire I comment that and works again.
Do you know any way to check the livewire installation in filament ?
6 replies
FFilament
Created by ingeday on 11/8/2024 in #❓┊help
How to upgrading filament to minor versions
Do I have to do any additional step? I think I broke my project.
Is it possible make a clean installation and to migrate all resources what I worked?
19 replies
FFilament
Created by Carbon on 10/26/2024 in #❓┊help
Server Crashes After Resource Update/Edit
Were you able to fix it?
6 replies
FFilament
Created by ingeday on 11/6/2024 in #❓┊help
open a modal from a navigationitem
Do you know if there is another way to do it other than a button in a widget?
9 replies
FFilament
Created by ingeday on 10/8/2024 in #❓┊help
widget doesn't update properly from another property received with $listeners
In different places I found that I had to add the updated method but this method didn't run so I made a reset of the table in the setFilter method.
public function setFilter(string $filter): void
{
$this->filter = $filter;
$this->resetTable();
}
public function setFilter(string $filter): void
{
$this->filter = $filter;
$this->resetTable();
}
Thanks,
2 replies