EMMAN
EMMAN
FFilament
Created by EMMAN on 7/4/2024 in #❓┊help
Make the 'Step' (Wizard) Vertical
No description
5 replies
FFilament
Created by EMMAN on 7/3/2024 in #❓┊help
Readonly on 'Select Component'
Is it possible to make the 'Select component' read-only? '->extraInputAttributes(['readonly' => true])' and '->readOnly()' are not working. If I use '->disabled()', it will not save the current item.
6 replies
FFilament
Created by EMMAN on 7/3/2024 in #❓┊help
CUSTOM COLOR ON BADGE
No description
10 replies
FFilament
Created by EMMAN on 6/21/2024 in #❓┊help
FilamentBreezy Error on Multiple Panel
Are you encountered this error: Route [filament.student.pages.my-profile] not defined. AdminPanelProvider: ->plugins([ ..... BreezyCore::make() ->myProfile( shouldRegisterUserMenu: true, shouldRegisterNavigation: false, navigationGroup: 'User Management', hasAvatars: true, slug: 'my-profile' ), StudentPanelProvider ->plugins([ BreezyCore::make() ->myProfile( shouldRegisterUserMenu: true, shouldRegisterNavigation: false, navigationGroup: 'User Management', hasAvatars: true, slug: 'my-profile' ),
4 replies
FFilament
Created by EMMAN on 6/19/2024 in #❓┊help
Is there a "Batch Edit Feature" like on OpenAdmin?
good day. is there a "Batch Edit" feature like on Laravel OpenAdmin? Because i did not see "Batch Edit" on Filament Documentation. Video Reference:
4 replies
FFilament
Created by EMMAN on 6/17/2024 in #❓┊help
Modal Popup on 'ImageColumn' Click - Table
Good day. It is possible to display a Modal on a click on 'ImageColumn' on table? CURRENT CODE: Tables\Columns\ImageColumn::make('requirement_qrcode_path') ->height('80%') ->width('100%') ->getStateUsing(function (RequirementsManagement $record): ?string { return $record->requirement_qrcode_path ?? ''; }) ->extraImgAttributes([ 'img' => 'src' ]),
4 replies
FFilament
Created by EMMAN on 6/14/2024 in #❓┊help
Adjust the 'WIDTH' of 'Stats Overview Widget'
No description
5 replies
FFilament
Created by EMMAN on 6/8/2024 in #❓┊help
Problem In Deployment - request has been blocked
No description
11 replies
FFilament
Created by EMMAN on 6/5/2024 in #❓┊help
Restore not working on Relationship
No description
13 replies
FFilament
Created by EMMAN on 6/3/2024 in #❓┊help
IT IS POSSIBLE TO ADD "EDIT BUTTON" on VIEW MODAL?
No description
11 replies
FFilament
Created by EMMAN on 6/3/2024 in #❓┊help
REMOVE DELAY WHILE TYPING ON LIVE() and AFTERSTATEUPDATED()
Forms\Components\TextInput::make('firstname') ->required(true) ->maxLength(50) ->label('First Name') ->placeholder('First Name') ->live() ->afterStateUpdated(fn ($state, callable $set, $get) => $set('fullname', static::generateFullName($state, $get('middlename'), $get('lastname'), $get('extensionname')))),
how can i remove the delay while typing on textinput on live() and ->afterStateUpdated()
9 replies
FFilament
Created by EMMAN on 6/3/2024 in #❓┊help
HIDING A FORM TEXTBOX ON 'CREATE' AND EDIT MODAL, NOT ON VIEW MODAL
Forms\Components\TextInput::make('fullname')->placeholder('Fullname')->unique(Advisers::class, 'fullname', ignoreRecord: true) How can I hide the fullname textbox on the create and edit modals, but not on the view modal? I'm using Filament v3. TY.
2 replies