- Clone this repo from Github, note that this repo includes .env file
- Start Laravel sail docker containers
- Migrate and seed the database
git clone https://github.com/tjodalv/filament-select-search-bug.git
Enter project's directory:
cd filament-select-search-bug
./vendor/bin/sail up
./vendor/bin/sail composer install
./vendor/bin/sail artisan migrate --seed
This will create sample products and default admin user to login to Filament panel.
Open admin panel at location:
http://localhost:1234/admin
Login with the default user: [email protected]
and password 1234
.
In the navigation click on the Orders and then button New order
.
On product code select field try to find product by their name. Try typing in search box 'Pepsi'. You will get message No options match your search
.
You can only search by product code, not by product name even though that field is defined as searchable.