EMMAN
How can to disable 'create & create another' button on createOptionForm
Good day guys. How can i disable 'create & create another' button on createOptionForm
Forms\Components\Select::make('owner_id')
->relationship('owner', 'name')
->searchable()
->preload()
->createOptionForm([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
Forms\Components\TextInput::make('email')
->label('Email address')
->email()
->required()
->maxLength(255),
Forms\Components\TextInput::make('phone')
->label('Phone number')
->tel()
->required(),
])
->required()
TYSM.13 replies
Add filepond captureMethod for FileUpload via Camera
Feature Description
I propose the addition of a new option captureMethod to the FileUpload component within FilePond. This feature would allow developers to specify how the file input should capture the data, particularly useful for mobile devices where the user can choose to take a picture or video directly or select existing files. The primary aim is to enhance user experience and provide flexibility for developers to tailor file input behavior according to the application's needs.
Forms\Components\FileUpload::make('image')->image()->captureMethod(['camera'])->required(),
6 replies
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
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