abkrim
abkrim
FFilament
Created by abkrim on 10/24/2024 in #❓┊help
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 empty
I need use Equals
->filters([
QueryBuilder::make()
->constraints([
TextConstraint::make('modem_id')->operators(['equals']),
]),
])
->filters([
QueryBuilder::make()
->constraints([
TextConstraint::make('modem_id')->operators(['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
FFilament
Created by abkrim on 10/23/2024 in #❓┊help
Modify size on modal view of resource
No description
4 replies
FFilament
Created by abkrim on 5/5/2024 in #❓┊help
navigationGroup is posible for plugins?
I'm using kenepa/translation-managerplugin. On his doc I don't see any way for put 2 item in menu, in a especial gorup Is posible override group for a plugin ? Also icon ? Best regards.
3 replies
FFilament
Created by abkrim on 4/4/2024 in #❓┊help
Problems implementing pdfphilip/laravel-elasticsearch due to pagination
No description
2 replies
FFilament
Created by abkrim on 3/12/2024 in #❓┊help
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.
a route:list | grep admin | grep login
GET|HEAD admin/login ........................................... .................................................. .................................................. .................................................. .................................... filament.admin.auth.login › Filament\Pages › Login<
a route:list | grep admin | grep login
GET|HEAD admin/login ........................................... .................................................. .................................................. .................................................. .................................... filament.admin.auth.login › Filament\Pages › Login<
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
a livewire:publish --assets

INFO Publishing [livewire:assets] assets.

Copying directory [vendor/livewire/livewire/dist] to [public/vendor/livewire] ............................................................... DONE
a livewire:publish --assets

INFO Publishing [livewire:assets] assets.

Copying directory [vendor/livewire/livewire/dist] to [public/vendor/livewire] ............................................................... DONE
But same problem.
12 replies
FFilament
Created by abkrim on 9/7/2023 in #❓┊help
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
FFilament
Created by abkrim on 8/24/2023 in #❓┊help
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
FFilament
Created by abkrim on 8/3/2023 in #❓┊help
View and Edit show empty fields, user menu and groups in menu stop working
3 replies