aksh
aksh
FFilament
Created by aksh on 8/26/2024 in #❓┊help
colorpicker default value set
How to set default value of colorpicker in form?
3 replies
FFilament
Created by aksh on 8/20/2024 in #❓┊help
use a single browser, log in to our application as Tenant A, and open another tab for Tenant B
In our saas web app, If I use a single browser, log in to our application as Tenant A, open another tab, and log in as Tenant B - it shows a 403 error. so that sessions can co-exist between concurrent logged-in users using the same browser on the same machine? We use Filament 3 with Laravel 10. Is there any way around it?
3 replies
FFilament
Created by aksh on 8/1/2024 in #❓┊help
Update specific column data of each row of another table when reordering the rows of category
Hello guys, I want to run static "changeSort" when reordering the rows ->striped()->reorderable('sort')->reorderRecordsTriggerAction( fn (Action $action, bool $isReordering) => $action ->button() ->label($isReordering ? ('text.Disable reordering') : ('text.Enable reordering')), ); public static function changeSort(){ dd('test'); }
5 replies
FFilament
Created by aksh on 7/1/2024 in #❓┊help
Translate is not working on only NavigationItem in AdminpanelProvider
->navigationItems( [ NavigationItem::make('Booking List') ->label( ('sidebar.Booking List') ) ->url( fn (): string => Dashboard::getUrl().'/bookings/listing' ) ->icon( 'heroicon-o-presentation-chart-line' ) ->activeIcon( 'heroicon-s-presentation-chart-line' ) ->isActiveWhen( fn (): bool => Str::contains( url()->current(), 'bookings/listing' ) ) ->group( ('sidebar.Booking') ) ->sort( 3 ) ->visible(fn(): bool => Auth::user()?->can('Booking Read')), how to fix this issue?I used language switcher plugin
7 replies
FFilament
Created by aksh on 6/24/2024 in #❓┊help
Hi everyone, Used language switch plugin
I used the language switch plugin on the project in filament v3. I want to translate custom text. how can I do it
3 replies
FFilament
Created by aksh on 6/21/2024 in #❓┊help
I used a checkbox in the filter and it has default true.
Hi everyone, I used a checkbox in the filter and it has default true. but I want to disable or hide it so the user cannot uncheck it. I am using filament v3 ->filters([ Filter::make('selected_location') ->query(function ($query) use ($selectedLocation) { if ($selectedLocation) { return $query->where('locations_id', $selectedLocation); } return $query; })->default(true), )}
6 replies
FFilament
Created by aksh on 6/6/2024 in #❓┊help
Implement new user via zapier
No description
5 replies