cakan
cakan
FFilament
Created by Jon Mason on 12/8/2023 in #❓┊help
table headers disappear when using collapsible table rows.
I've noticed that description is displayed only if there is data. Is it possible to force display a description even if cell value is null?
7 replies
FFilament
Created by Prodex on 2/9/2024 in #❓┊help
Collapsable column, but keeping the normal layout
I have the same question. To have regular table row with each row having additional expandable row of data.
3 replies
FFilament
Created by Skjena on 2/8/2024 in #❓┊help
Can't get the field when disabled
You should add additional hidden field with employee_id value.
17 replies
FFilament
Created by Skjena on 2/8/2024 in #❓┊help
Can't get the field when disabled
That's because the field is disabled. Try making it readonly or hidden. Browsers don't submit disabled fields.
17 replies
FFilament
Created by ejoi8 on 2/8/2024 in #❓┊help
Export action to display data from relationships
Have you tried updating Filament to latest version? There was a bug in early versions of 3.2 which caused relation data not to show up in export at all.
5 replies
FFilament
Created by Sauravisus on 10/7/2023 in #❓┊help
Inlining the label of textinput
Is it possible to style inlineLabel() to be displayed in 2 columns instead of 3?
5 replies
FFilament
Created by cakan on 11/30/2023 in #❓┊help
TextEntry url
Also, I have tried using solutionforest/Filament-SimpleLightBox plugin, but I have the same issue with additional issue being that ->SimpleLightbox() accepts url only as a string 😢
3 replies
FFilament
Created by cakan on 10/18/2023 in #❓┊help
Tabs with different content
Yeah, magic behing it must have got confused 🙂 Now to figure out how to slect only projects for selected company 😛
13 replies
FFilament
Created by cakan on 10/18/2023 in #❓┊help
Tabs with different content
This is the working code. I have custom component Company: class CompanyProperties extends Entry { protected string $view = 'filament.admin.pages.company-projects'; } with a blade: <x-filament::section> @livewire('list-projects') </x-filament::section> And a livewire component: class ListProperties extends Component implements HasForms, HasTable { use InteractsWithTable; use InteractsWithForms; public function render() { return view('livewire.list-projects'); } public function table(Table $table): Table { return ProjectResource::table($table) ->query(ProjectResource::getEloquentQuery()) ->actions([ EditAction::make()->form(getProjectSchema()), ]); } with a following blade: <div> {{ $this->table }} </div> Then, in my infolist that display the tabs I added this tab: Tabs\Tab::make("Projects")->schema([ Pages\CompanyProjects::make('projects') ]),
13 replies
FFilament
Created by cakan on 10/18/2023 in #❓┊help
Tabs with different content
I've managed to make it work. I re-did everything again from the scratch and actions are working this time. I don't see any difference in current and previous solution. Code is the same, it's just magically works 🙂
13 replies
FFilament
Created by jmendozaf on 9/12/2023 in #❓┊help
Issue with Table Actions Inside a Livewire Component in Filament v3
I defined my model, but whatever I do it's null. I'll try to make everything from scratch.
27 replies
FFilament
Created by biebthesecond on 10/6/2023 in #❓┊help
Table row action not working
Modals are working. The issue seems to be with the model is missing.
5 replies
FFilament
Created by jmendozaf on 9/12/2023 in #❓┊help
Issue with Table Actions Inside a Livewire Component in Filament v3
Your example works for me, but when I try the same code in my project I get the error stating that Product model is null. Not sure what I'm doing wrong.
27 replies
FFilament
Created by biebthesecond on 10/6/2023 in #❓┊help
Table row action not working
Have you found the solution? I have the same problem.
5 replies
FFilament
Created by cakan on 10/18/2023 in #❓┊help
Tabs with different content
I've tried making custom component with a table. It displays a table and everything looks ok but actions are not working - it doesn't use form from the resource. Am I missing something? I would like to avoid duplicating forms.
13 replies
FFilament
Created by cakan on 10/18/2023 in #❓┊help
Tabs with different content
How would I do that? I tried making a custom page for it but without success 😦
13 replies