einnlleinhatt_
einnlleinhatt_
Explore posts from servers
FFilament
Created by ruimtcosta on 12/17/2023 in #❓┊help
RichEditor
Does your name in rich editor same like the column name in database?
2 replies
FFilament
Created by kcire.dev on 12/15/2023 in #❓┊help
ImportColumn::getRelationship()
Do you have belongstomany instance ? Because from the error it expect belongsto but belongstomany is returned
4 replies
FFilament
Created by Ilham Dimas Prayudha on 12/9/2023 in #❓┊help
CreateOptionForm Modal Width
I think it's based on tailwind here are the docs https://filamentphp.com/docs/3.x/actions/modals
10 replies
FFilament
Created by Chirag Manvar on 12/9/2023 in #❓┊help
need help
Use belongstomany
10 replies
FFilament
Created by Nono on 12/8/2023 in #❓┊help
Restricting Access to a Custom Filament Page Based on User Role
Do you mind sharing your code?
10 replies
FFilament
Created by Nono on 12/8/2023 in #❓┊help
Restricting Access to a Custom Filament Page Based on User Role
Maybe you can try filament shield plugin
10 replies
FFilament
Created by Nono on 12/8/2023 in #❓┊help
Restricting Access to a Custom Filament Page Based on User Role
Do you have a role in your user ?
10 replies
FFilament
Created by Sanchit Patil on 12/6/2023 in #❓┊help
Max Selectable Options in Checkbox List
Using max:5 maybe
10 replies
FFilament
Created by Darnes on 12/5/2023 in #❓┊help
Summarize not work with MS Sql Server . (Invalid object name 'Tsaheal.Bank') ..
Or maybe you can put .dbo in your db name ? 🤔
14 replies
FFilament
Created by Darnes on 12/5/2023 in #❓┊help
Summarize not work with MS Sql Server . (Invalid object name 'Tsaheal.Bank') ..
Do you have pdo sql extension on ?
14 replies
FFilament
Created by David warner on 12/5/2023 in #❓┊help
Issue while displaying a image in column
Are you opening the site using exactly the same ? If yes did you do php artisan storage link ?
16 replies
FFilament
Created by Quin. on 12/5/2023 in #❓┊help
Money function but what if it is empty?
What's the error?
16 replies
FFilament
Created by Soundmit on 12/3/2023 in #❓┊help
Little email client/tracking in my app
I remember there is a laravel package for it, but I forgot the name.
7 replies
FFilament
Created by phphelloworld on 12/2/2023 in #❓┊help
searchable() in Select blocks listing items
If you search it, does it show up? I think with searchable you need to type it first then it will show the option. You can add preload() tho.
3 replies
FFilament
Created by Jean Roumeau on 12/3/2023 in #❓┊help
Is it possible to display a resource create form within a table header Bulk action.
Inside model
public static function getForm(): array
{
return [
Group::make()->columns(2)->schema([
TextInput::make('name')
->required()->maxLength(255),
TextInput::make('email')
->email()->required()->maxLength(255),
])
];
}
Inside model
public static function getForm(): array
{
return [
Group::make()->columns(2)->schema([
TextInput::make('name')
->required()->maxLength(255),
TextInput::make('email')
->email()->required()->maxLength(255),
])
];
}
9 replies
FFilament
Created by Jean Roumeau on 12/3/2023 in #❓┊help
Is it possible to display a resource create form within a table header Bulk action.
return $form
->schema(Model::getForm())
return $form
->schema(Model::getForm())
9 replies
FFilament
Created by Jean Roumeau on 12/3/2023 in #❓┊help
Is it possible to display a resource create form within a table header Bulk action.
Move your document form into the model. Make a static function called getForm() and return array. In your document resources call the getForm()
9 replies
FFilament
Created by Jean Roumeau on 12/3/2023 in #❓┊help
Is it possible to display a resource create form within a table header Bulk action.
If I understand correctly, you have resources A and inside there is a form A and you have resources B but with the click button action it will open the modal and inside the modal it has form A ?
9 replies
FFilament
Created by YusifHajiyev on 12/3/2023 in #❓┊help
User & Admin panel
Maybe make your own custom middleware
9 replies
FFilament
Created by YusifHajiyev on 12/3/2023 in #❓┊help
User & Admin panel
Try make the login(null)
9 replies