Povilas and Modestas, thank you very much for your work in developing this project and making it open source. Your initiative only increases the great quality content you produce. The help for new developers is notable, a great source of studies. Congratulations🎉😊
Love it! Well done guys, and thanks for making this open source. This is going to save so many people so much time, and was part of the reason I finally decided to join Laravel Daily yesterday - I'm happy to pay back for your work.
Nice evolution of quick admin panel I built kind of the same project. Rather than generating the code I only implement the database then it directly generates the crud inside the current project.
Nice! This is also possible if you have the Laravel Idea plugin in PHPStorm (at the panel to create a model). However, this makes it easier to make changes afterwards.
I have an extra issue. I have a production ready API with Laravel 11 and I want to integrate filament (create,update,list) with my existing API and not to default filament CRUD operation directly with models. Do you have any idea how to do it ?
Dear Sir, Thank you for your hard work, What if i already have a database with data, and need to manage it through filament, can you please advise how to implement it through FilaStart ?
@@LaravelDaily Thank you for your reply, But as far as i see "Title" is not editable in "CRUDs" Filastart to make it match the table name in database, i can just edit "Visual title". Thank you.
@@LaravelDaily I solved, it by adding this line in the Model: protected $table = "Database table name"; Thank you a lot, we are still looking forward to your amazing work, especially "FilaStart".
I'm curious to know what are the factors considered not to go as a full laravel project just like the admin panel generator and create only the filament resources?
In a way - time constraint. However, allowing end-users to select which files they want to copy would be more versatile. For example, you might want the resources auto-generated, not models/migrations. It is easier to copy and straight to the point.
Depends on how "custom" you want, please read the docs for that. And we have a lot of examples on our filamentexamples.com you can browse around there.
@@modestasmv I am curious about "Generators". How code works for generating special migrations, models, and templates with mocap and controllers after when we chose in forms fields. I looked in the code but for me and my level, it's not easy to understand all. Thx for the response.
@@karlson2804 Hmm, I'm not sure how useful this would be for a wider audience. The problem is that this is just a simple text generation with some parts. For example, we know how a field should look, so we have to generate text with that field information. That's it. But we will check if this makes sense!
We had QuickAdmin as a package in the early days, and this time - we just decided to go as a full project. It was not worth the time, while trying to fight all possible issues :)
I personally prefer the MVC architecture over Filament because the latter lacks structure. It is only good for small projects I think. Maybe it will make sense if I pay attention to it, maybe I will.
Povilas and Modestas, thank you very much for your work in developing this project and making it open source. Your initiative only increases the great quality content you produce. The help for new developers is notable, a great source of studies. Congratulations🎉😊
Sir do you know how to deploy laravel reverb on Linux apache server. I asked in the comment but didn't get any response.
Love it! Well done guys, and thanks for making this open source. This is going to save so many people so much time, and was part of the reason I finally decided to join Laravel Daily yesterday - I'm happy to pay back for your work.
Wow so glad to hear, thank you for support!
Awesome idea and project! Just on time when I decide to learn filament :)
You are the best! Thank you for make our dev life more easy
Awesome tool, thanks for creating and open-sourcing it! Reminds me a lot of the old cake bake from CakePHP back in the day
Awesome work Povilas and Team 👍🏾👍🏾💥💥
Nice evolution of quick admin panel
I built kind of the same project. Rather than generating the code I only implement the database then it directly generates the crud inside the current project.
Awesome! Thanks for making this project, will try soon
Thanks, i’m looking for same 😊
This is great, thank you!
exactly what I was waiting for 🙂
Amazing... is it the same as filapanel?
Similar, yes
Great job! Open source is the way to go for maximum impact of the software in the community.
Thanks!
Nice!
This is also possible if you have the Laravel Idea plugin in PHPStorm (at the panel to create a model). However, this makes it easier to make changes afterwards.
OMG this is so great!
I have an extra issue.
I have a production ready API with Laravel 11 and I want to integrate filament (create,update,list) with my existing API and not to default filament CRUD operation directly with models. Do you have any idea how to do it ?
I don't think it's possible to answer in a short comment here
@@LaravelDaily thank you. But how can I get answer from you for this topic
Dear Sir,
Thank you for your hard work,
What if i already have a database with data, and need to manage it through filament, can you please advise how to implement it through FilaStart ?
In the same way, install Filament and generate Filament resources with FilaStart.
@@LaravelDaily Thank you for your reply,
But as far as i see "Title" is not editable in "CRUDs" Filastart to make it match the table name in database, i can just edit "Visual title".
Thank you.
Hm, yeah, we automated that. At this point, you then need to make manual edits in our generated Filament resources to match your exact column names.
@@LaravelDaily I solved, it by adding this line in the Model:
protected $table = "Database table name";
Thank you a lot, we are still looking forward to your amazing work, especially "FilaStart".
Good job! Thank you very much!
this is like inception 🤯
Awesome! Is json type supported for field type?
Currently - no, but this can be extended as needed!
I'm curious to know what are the factors considered not to go as a full laravel project just like the admin panel generator and create only the filament resources?
In a way - time constraint. However, allowing end-users to select which files they want to copy would be more versatile. For example, you might want the resources auto-generated, not models/migrations. It is easier to copy and straight to the point.
I LOVE YOU !!!! Excellent!
How to install on windows 11 it give me error (pcntl php extension) "composor install"
You probably need to install/enable that extension in PHP.
@@LaravelDaily it's work only on Unix platforme
How can create custom create form in filamentphp
I have to create movie create form like oxoo
Depends on how "custom" you want, please read the docs for that.
And we have a lot of examples on our filamentexamples.com you can browse around there.
Quick admin panel 2.0?
Thank you for your efforts
Thank you sir🎉
Will be some explanation of how generetion of everything works in code?
What exactly are you curious about? We might do documentation if needed and a video from Povilas :)
@@modestasmv I am curious about "Generators".
How code works for generating special migrations, models, and templates with mocap and controllers after when we chose in forms fields.
I looked in the code but for me and my level, it's not easy to understand all.
Thx for the response.
@@karlson2804 Hmm, I'm not sure how useful this would be for a wider audience. The problem is that this is just a simple text generation with some parts. For example, we know how a field should look, so we have to generate text with that field information. That's it. But we will check if this makes sense!
a "making of FilaStart" would be awesome.
The full journey would be actually boring :)
Which part(s) are you interested, or what questions do you have? We can maybe shoot videos on those :)
@@LaravelDaily it's the Relationship thing where you add/edit fields to the Resource.
@@globetrotterxxl7440 That is a simple "Fieldset" with a hidden condition
I am not using laravel forge but deployed on Linux apache2 server and used supervisor. I didn't get any documentation for the same.
Fantastic!
Have a discount code for filament examples? $99 is alot for brazil :(
All discounts are here: coupons.laraveldaily.com
Thanks
Why not make it a package?
We had QuickAdmin as a package in the early days, and this time - we just decided to go as a full project. It was not worth the time, while trying to fight all possible issues :)
As Modestas said, too much work to make it flexibly installable into all possible projects.
@@LaravelDaily Small qvestion, but filement, not a good stable code base with allows as build of widgets or plugins for one base structure adminPanel?
Sorry I may misunderstood your question, but to me, Filament is a good stable codebase with a lot of customizations you can do
I personally prefer the MVC architecture over Filament because the latter lacks structure. It is only good for small projects I think. Maybe it will make sense if I pay attention to it, maybe I will.
It's a personal preference.
Super Nice !!!!!!
Why isn't this a package? Would be much easier to generate code files directly in folder and update those files.
Because it would be a lot more work. But you can contribute and turn it into a package!
@@LaravelDaily sure, we can do something
Wonderful
This in awesome
nice
If this happens to be a package. Filament will be voyager + backpack + nova on steroid
For now, we intentionally made it not a package, way easier this way.
how about YOU making such package?