How to create a checkout page in filament
Hello i really need some help on this how can i make a checkout page that is available to the public (no login required) , without showing the navigation bar etc , thanks
Solution:Jump to solution
Just create a custom livewire component in you public space that has nothing to do with filament and use filament's form build (you can use it ouside of the admin panel) and create your form:
Documentation:
https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component
...
devdojo
YouTube
The Best Form Builder for Laravel - Filament Forms
In this video I will be showing you how to build forms for your Laravel application using the FilamanetPHP forms package. This package can be used without the Filament admin package and can come in handy for quickly and easily building forms for your Laravel application.
Be sure to visit the Filament Forms Package documentation page at: URL
If ...
2 Replies
Solution
Just create a custom livewire component in you public space that has nothing to do with filament and use filament's form build (you can use it ouside of the admin panel) and create your form:
Documentation:
https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component
Here is a YT video show example: https://www.youtube.com/watch?v=g2v_FI4ML5U
devdojo
YouTube
The Best Form Builder for Laravel - Filament Forms
In this video I will be showing you how to build forms for your Laravel application using the FilamanetPHP forms package. This package can be used without the Filament admin package and can come in handy for quickly and easily building forms for your Laravel application.
Be sure to visit the Filament Forms Package documentation page at: URL
If ...
thanks