Altffenser
Altffenser
FFilament
Created by SUNSHINE on 11/5/2023 in #❓┊help
Compile CSS classes assets ?
Then share your tailwind.config.js file here and tell me in which path you have your logo.blade.php file located
16 replies
FFilament
Created by SUNSHINE on 11/5/2023 in #❓┊help
Compile CSS classes assets ?
Please follow all filamentphp installation instructions.
16 replies
FFilament
Created by PabloZagni on 10/30/2023 in #❓┊help
replace header with Jetstream navigation-menu
In my case, it was just what I did but not because I don't like the design and layout of filamentphp, because of the features of Jetstream.
9 replies
FFilament
Created by PabloZagni on 10/30/2023 in #❓┊help
replace header with Jetstream navigation-menu
Why don't you choose to put the button that redirects to the Jetstream configuration in the Filament side menu? Any context would help 😀
9 replies
FFilament
Created by Altffenser on 10/24/2023 in #❓┊help
Include prefix as part of text input.
Works! thank you 😄
5 replies
FFilament
Created by thc1967 on 10/23/2023 in #❓┊help
Styling in a Livewire Form
You have other layout for you Livewire component?
12 replies
FFilament
Created by thc1967 on 10/23/2023 in #❓┊help
Styling in a Livewire Form
Use filament assets like <x-filament::input type="text"></x-filament::input>
12 replies
FFilament
Created by Altffenser on 10/20/2023 in #❓┊help
Conditionally create non-editable fields
Thank you! you're right! I take a look at it
5 replies
FFilament
Created by Jean Roumeau on 10/20/2023 in #❓┊help
Adding BelongsToMany that includes another BelongsToMany relation to a form
Please describe your models with code for best understanding 🙏
16 replies
FFilament
Created by newbie on 10/18/2023 in #❓┊help
Styling not getting applied in filament custom-page
And you view folder structure.
12 replies
FFilament
Created by newbie on 10/18/2023 in #❓┊help
Styling not getting applied in filament custom-page
Please, share you tailwind.config.js
12 replies
FFilament
Created by newbie on 10/18/2023 in #❓┊help
Styling not getting applied in filament custom-page
I think it has to do with replacing some tailwind variables, try removing presets: [preset] from the tailwind.config.js file. Note: it remove custom colors from Filament. The best way to skip this is create your own theme.
12 replies
FFilament
Created by AlessandroKobs on 10/17/2023 in #❓┊help
Notifications in custom pages return Unable to find component: [filament.livewire.notifications]
I understand, maybe you need to include all scripts in your source or try creating a page using Filament.
16 replies
FFilament
Created by AlessandroKobs on 10/17/2023 in #❓┊help
Notifications in custom pages return Unable to find component: [filament.livewire.notifications]
Please screenshot of php artisan about
16 replies
FFilament
Created by Altffenser on 10/16/2023 in #❓┊help
How to create a modal form
Solved. It is too simple, if you are in same situation, I recommend you see: https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component
3 replies
FFilament
Created by AlessandroKobs on 10/17/2023 in #❓┊help
Notifications in custom pages return Unable to find component: [filament.livewire.notifications]
Maybe this is a stupid question but, have you installed the package?
16 replies
FFilament
Created by MRBUG on 10/17/2023 in #❓┊help
Relation on text area form?
This way above works too
19 replies
FFilament
Created by MRBUG on 10/17/2023 in #❓┊help
Relation on text area form?
You can, just specify with ->model(Event::class) like
Select::make('event_type_id')
->model(Event::class)
->relationship('type', 'name')
->searchable()
->editOptionForm([
TextInput::make('name')
->label('Name')
->required()
->rules('required'),
TextInput::make('color')
->label('Color')
->type('color')
->required()
])
Select::make('event_type_id')
->model(Event::class)
->relationship('type', 'name')
->searchable()
->editOptionForm([
TextInput::make('name')
->label('Name')
->required()
->rules('required'),
TextInput::make('color')
->label('Color')
->type('color')
->required()
])
19 replies
FFilament
Created by MRBUG on 10/17/2023 in #❓┊help
Relation on text area form?
and specify the model with ->form({})->model(Event::class)
19 replies
FFilament
Created by MRBUG on 10/17/2023 in #❓┊help
Relation on text area form?
No description
19 replies