Hemanath
Hemanath
FFilament
Created by Roshan_k on 9/10/2024 in #❓┊help
filters
All done but not working this was version "filament/filament": "3.2",
6 replies
FFilament
Created by Hemanath on 8/28/2024 in #❓┊help
When Changing url should not work in filament any method
thanks dan .Let try...
4 replies
FFilament
Created by Hemanath on 7/15/2024 in #❓┊help
How can we select minutes in form for timepicker ?
I don't want select date and time; i need to select minutes only for storing databases. Are there any options in filament?
5 replies
FFilament
Created by Hemanath on 4/1/2024 in #❓┊help
Autocomplete not working in textinput
okay
8 replies
FFilament
Created by Hemanath on 4/1/2024 in #❓┊help
Autocomplete not working in textinput
I am doing a registration form and filling in a number of fields, but again showing the same filled-in details that show new data while typing. Any solution..?
8 replies
FFilament
Created by Hemanath on 4/1/2024 in #❓┊help
Autocomplete not working in textinput
okay
8 replies
FFilament
Created by Hemanath on 3/28/2024 in #❓┊help
Unable to resolve repeater text input problem
Thanks ..its working...👍
6 replies
FFilament
Created by Hemanath on 3/28/2024 in #❓┊help
Unable to resolve repeater text input problem
Thanks for reply ..let try
6 replies
FFilament
Created by Hemanath on 3/20/2024 in #❓┊help
I am using navigation group and navigationitem but page was broken
but we cant give for both in filament ...
7 replies
FFilament
Created by Hemanath on 3/20/2024 in #❓┊help
I am using navigation group and navigationitem but page was broken
that was clear
7 replies
FFilament
Created by Hemanath on 1/20/2024 in #❓┊help
protected function getTableColumns(): array
⬆️
5 replies
FFilament
Created by Hemanath on 1/6/2024 in #❓┊help
Panel Logout
Ok man Thanks for help , I will remember.
12 replies
FFilament
Created by Hemanath on 1/6/2024 in #❓┊help
Panel Logout
It Working man Thanks, and can you help me one thing ,can you have any idea , like i want to allow some users to panel who have specific roles and not allow others.
12 replies
FFilament
Created by Hemanath on 1/5/2024 in #❓┊help
Panel redirect
If I signOut From an Admin Panel I need to go to another panel login, can we do that?
8 replies
FFilament
Created by Hemanath on 1/5/2024 in #❓┊help
Panel redirect
It working man thanks , I can do another thing like if i sign out it want to redirect back the panel which i login.
8 replies
FFilament
Created by Hemanath on 1/5/2024 in #❓┊help
Panel redirect
ok thanks ...let try
8 replies
FFilament
Created by Sael on 12/22/2023 in #❓┊help
Edit forms
protected static ?string $label = ''
12 replies
FFilament
Created by Sael on 12/22/2023 in #❓┊help
Edit forms
you can use ->label('')
12 replies
FFilament
Created by Sael on 12/22/2023 in #❓┊help
Edit forms
Need to change action name edit?
12 replies
FFilament
Created by Hemanath on 12/15/2023 in #❓┊help
How to use $get and $set in custom page
Grid::make() ->schema([ Radio::make('yard_type') ->options(function () { $yard = Master::where('parent_id', config('constants.master.yard_type'))->get()->pluck('display_name', 'display_name'); return $yard; })->inline()->label('Yard Type')->required() ->afterStateUpdated(function (Set $set) { $set('trip', null); $set('mcc_id', null); $set('vehicle_id', null); })->reactive(), ]), Grid::make() ->schema([ Select::make('mcc_id')->required() ->label('MCC')->placeholder('Type MCC Name')->autofocus()->preload()->searchable()->reactive() ->getSearchResultsUsing(fn (string $search) => Mcc::where('name', 'like', "%{$search}%")->pluck('name', 'id')) ->options(function () { $mcc = Mcc::all(); return $mcc->pluck('name', 'id'); })->visible(function (Get $get) { return $get('yard_type') == config('constants.yard_type.compost_yard') ? true : false; }), ]), here is the code which i use get and set between two fields.
5 replies