lordjackson
lordjackson
FFilament
Created by lordjackson on 8/9/2024 in #❓┊help
Component form and list on livewire update list when saving data
Hello guys, I have a question with livewire, could anyone indicate any material on how to do this? Or someone can give a help - I have a form component, when saving I want to update the listing - Listing component should receive the update of the form data Here is the code: https://gist.github.com/lordjack/f6406c7b865d493a3a7915451a494ece However, by saving the data with the form, it does not update the listing. Being necessary to press the F5 key to make a refresh on the screen
2 replies
FFilament
Created by lordjackson on 6/22/2024 in #❓┊help
Custom page without upper menu and sidebar menu
No description
8 replies
FFilament
Created by lordjackson on 5/27/2024 in #❓┊help
Problem with Custom Component Changes from the Light theme for Dark
Hello guys, I created a custom component, however, when I enter the screen that it is added. The theme changes the mode for Dark, as you can see in the video. Has anyone ever experienced this? Does anyone have any tips on how to solve?
2 replies
FFilament
Created by lordjackson on 5/6/2024 in #❓┊help
Form with Repeater and another repeat inside it
No description
3 replies
FFilament
Created by lordjackson on 1/26/2024 in #❓┊help
Filament Manage Related with hasMany and hasMany with Repeater
No description
2 replies
FFilament
Created by lordjackson on 1/25/2024 in #❓┊help
How to override views components in filament
I'm wanting to override a filament component that is in the Filament Vendor. Does anyone indicate any material, or have you done, could you give a help? The component is in the following directory, I want to edit, I tried several things but I couldn't
@props([
'navigation',
])
<!-- override this file
//vendor/filament/filament/resources/views/components/page/sub-navigation/sidebar.blade.php
-->
<ul
wire:ignore
{{ $attributes->class(['hidden w-72 flex-col gap-y-7 md:flex']) }}
>
@foreach ($navigation as $navigationGroup)
<x-filament-panels::sidebar.group
:collapsible="$navigationGroup->isCollapsible()"
:icon="$navigationGroup->getIcon()"
:items="$navigationGroup->getItems()"
:label="$navigationGroup->getLabel()"
:sidebar-collapsible="false"
/>
@endforeach
</ul>
@props([
'navigation',
])
<!-- override this file
//vendor/filament/filament/resources/views/components/page/sub-navigation/sidebar.blade.php
-->
<ul
wire:ignore
{{ $attributes->class(['hidden w-72 flex-col gap-y-7 md:flex']) }}
>
@foreach ($navigation as $navigationGroup)
<x-filament-panels::sidebar.group
:collapsible="$navigationGroup->isCollapsible()"
:icon="$navigationGroup->getIcon()"
:items="$navigationGroup->getItems()"
:label="$navigationGroup->getLabel()"
:sidebar-collapsible="false"
/>
@endforeach
</ul>
This component is called on this page
//vendor/filament/filament/resources/views/components/page/index.blade.php

...
<x-filament-panels::page.sub-navigation.sidebar
:navigation="$subNavigation"
/>
...
//vendor/filament/filament/resources/views/components/page/index.blade.php

...
<x-filament-panels::page.sub-navigation.sidebar
:navigation="$subNavigation"
/>
...
12 replies
FFilament
Created by lordjackson on 9/11/2023 in #❓┊help
How to remove a Provider panel?
No description
8 replies