abkrim
Query builder operators for TextConstraint
In doc Query Builder #text-constraints I see that I can use
By default, the following operators are available: Contains - filters a column to contain the search term Does not contain - filters a column to not contain the search term Starts with - filters a column to start with the search term Does not start with - filters a column to not start with the search term Ends with - filters a column to end with the search term Does not end with - filters a column to not end with the search term Equals - filters a column to equal the search term Does not equal - filters a column to not equal the search term Is filled - filters a column to not be empty Is blank - filters a column to be emptyI need use Equals But I am unable to locate which array content should use camelCase, lowercase,... I also don't see any example on the subject and I can't make any progress here. 😫
3 replies
The POST method is not supported for route admin/login. Supported methods: GET, HEAD. 405 ERROR
I'm trying to log in to my app (local and production) which was working until now. After seeing a black screen, delete cookies to start from 0. When logging in (username + password correct double check) I find an error. Symfony \ Component\ HttpKernel\ Exception\ MethodNotAllowedHttpException
The POST method is not supported for route admin/login. Supported methods: GET, HEAD.
Working with:
- PHP 8.2.16
- Laravel Herd
In the web tools, I see > POST https://sitelight.test/admin/login 405 (Method Not Allowed)The login is Filament after put mi credentials an click for enter.
Others projects in mi machine work fine.
All projects update today and on Laravel 10
Also I see this error on Dev Tools
login:892 Livewire: The published Livewire assets are out of date
See: https://livewire.laravel.com/docs/installation#publishing-livewires-frontend-assets
(anonymous) @ login:892
I've tried
But same problem.
12 replies
I need full disable filamentphp v3 in one installation
For development reasons, we have a site in pre-production where we want to disable filamentphp, since we only wanted to leave the api routes (that's what that installation is)
I was wondering if there is a method to disable filamentphp v3 in that installation.
5 replies
Currency factoring 100 (Solved)
I am trying to use filamente admin v3 but I am facing a problem. I keep all my fields related to currency with a factor of 100, so as not to use decimals but whole numbers.
Try using -> Tables\Columns\TextColumn::make('price', 100)->money('eur'), but that divides by 100 but rounds to 100 decimal places.
Any idea how to do it?
7 replies