It is common to manage Customers in bulk or have an overview of where the Customer is progressing. For that, we can create a board like this:

In this lesson, we will do the following:
- Create a Custom Page
- Add a "kanban" style board to it
- Allow the user to move customers between Pipeline Stages
Creating Custom Page - Our Customer Board
We will create a Custom Page using the Filament command:
php artisan make:filament-page ManageCustomerStages
This should create two files:
-
app/Filament/Pages/ManageCustomerStages.php- the page class -
resources/views/filament/pages/manage-customer-stages.blade.php- the page view
We will begin with...
Hello Please help us with the command to create the two files you are talking about! After entering the php artisan make:filament-page ManageCustomerStages We get two Questions that I for one don’t know what to enter do I enter “customer” No! Looking at the path you are giving us it looks like maybe, app or is it filament; no that did not work either. ‘either the Filament code has been updated or something else is wrong’. By you not giving us this type of guidance it makes it hard for us to follow along; ‘Please’ at least with things like this give us the guidance so we don’t have to guess.
Hi, if there are no parameters - pick default ones. Otherwise we try to add them as needed. We understand that it might be confusing so we prepare as much as we can (yet, we do sometimes miss small things).
In any case - this is correct, if we did not assign any parameters - leave them empty and press enter
Ok I did just push enter and well; that worked thanks for the Quick come back.
I have made a few modifications to the blade, because, for me, when the customer has already been rejected or accepted, it makes no sense to move the status to another position, so:
anyway, it's just a suggestion.