Jap
Jap
FFilament
Created by Jap on 10/21/2024 in #❓┊help
Filament Form Component, Colors not showing
No description
4 replies
FFilament
Created by Jap on 7/21/2024 in #❓┊help
Disable breadcrumbs globally
How can i disable breadcrumbs globally?
4 replies
FFilament
Created by Jap on 7/18/2024 in #❓┊help
Table Filter Form Columns Count Number of fields
Is there a way to count the number of fields inside of the filter form ? ->filtersFormColumns(fn() => //values will be based on the number of fields)
2 replies
FFilament
Created by Jap on 7/18/2024 in #❓┊help
Table Action Group Cannot click 4th action
Is table action group limited into 3 actions ? I'm trying to click the 4th action and it seems disabled.
6 replies
FFilament
Created by Jap on 7/18/2024 in #❓┊help
Disable table actions while searching
How can i disable the actions in table rows while searching ?
6 replies
FFilament
Created by Jap on 7/10/2024 in #❓┊help
Bar Chart Widget labels not working (showing undefined)
No description
6 replies
FFilament
Created by Jap on 5/23/2024 in #❓┊help
Rename Default label in table group
No description
4 replies
FFilament
Created by Jap on 5/20/2024 in #❓┊help
Modify Export Action download URL link
My app is deployed in a sub-folder https://example.com/my-app. How can i modify the download .csv or .xlsx URL link in notification bar ?
18 replies
FFilament
Created by Jap on 5/16/2024 in #❓┊help
Export Action Filtered By Role
How can i filter the visibility of column that can be exported automatically based on role of the user?
2 replies
FFilament
Created by Jap on 5/14/2024 in #❓┊help
Login not working (Production)
I need help fixing my login page, it works on local server with the same setup. I also added session_domain and app_url in env file. When i try to login it keeps redirecting me back to login page.
15 replies
FFilament
Created by Jap on 3/29/2024 in #❓┊help
Conditional visibility of Repeater extraActions
Repeater::make('records')
->extraItemActions([
Action::make('sendEmail')
->visible(fn ($record, $state) => dd($record, $state)
//condition here visible only in specific records in the repeater
)
->icon('heroicon-m-envelope'),
])
Repeater::make('records')
->extraItemActions([
Action::make('sendEmail')
->visible(fn ($record, $state) => dd($record, $state)
//condition here visible only in specific records in the repeater
)
->icon('heroicon-m-envelope'),
])
how can i customize the visiblity of extraActions based on the value of the records in the repeater?
2 replies
FFilament
Created by Jap on 3/23/2024 in #❓┊help
Import action download example button missing (BUG)
After i added modalDescription with
new HtmlString()
new HtmlString()
download example csv is now missing in the modal.
ImportAction::make()
->label('Import')
->importer(Importer::class)
->modalDescription(
new HtmlString(
'<ol class="list-decimal text-sm dark:text-white">
<li>....</li>
</ol>'
)
)
ImportAction::make()
->label('Import')
->importer(Importer::class)
->modalDescription(
new HtmlString(
'<ol class="list-decimal text-sm dark:text-white">
<li>....</li>
</ol>'
)
)
7 replies
FFilament
Created by Jap on 3/16/2024 in #❓┊help
Updating value of Navigation Badge
How can i update the value of navigation badge, For example after creating or deleting a record ?
6 replies
FFilament
Created by Jap on 3/9/2024 in #❓┊help
Get table filter values
How can i get filter values of table?
->headerActions([
Action::make('sample')
->label('Sample')
->color('gray')
->form()
->action(function ($tableFilters) {
dd($tableFilters);
}),
])
->headerActions([
Action::make('sample')
->label('Sample')
->color('gray')
->form()
->action(function ($tableFilters) {
dd($tableFilters);
}),
])
4 replies
FFilament
Created by Jap on 3/6/2024 in #❓┊help
Convert Tabs in List Page to Sub Navigation Style
How can i convert tabs to same style as sub navigation?
2 replies
FFilament
Created by Jap on 3/3/2024 in #❓┊help
Too Many Redirects after login
No description
4 replies
FFilament
Created by Jap on 2/24/2024 in #❓┊help
Select with native(false) bug v.3.2.26
No description
5 replies
FFilament
Created by Jap on 2/15/2024 in #❓┊help
Text Input Columns Confirmation
How can i add confirmation before saving ?
8 replies
FFilament
Created by Jap on 2/10/2024 in #❓┊help
Global Form/Modal Actions Alignment
How can i perform this globally in my app service provider ?
public static string | Alignment $formActionsAlignment = Alignment::Right;
public static string | Alignment $formActionsAlignment = Alignment::Right;
4 replies
FFilament
Created by Jap on 2/8/2024 in #❓┊help
Saving relationship timestamps not working
I have this checkbox but i noticed that its created_at and updated_at in curriculumAcademicTerms table is not working. I tried also doing soft deletes and deleted_at does not work.
CheckboxList::make('academic_term_id')
->label('Academic Term')
->relationship('curriculumAcademicTerms', 'curriculum_id')
->columnSpanFull()
->bulkToggleable()
->columns(3)
->gridDirection('row'),
CheckboxList::make('academic_term_id')
->label('Academic Term')
->relationship('curriculumAcademicTerms', 'curriculum_id')
->columnSpanFull()
->bulkToggleable()
->columns(3)
->gridDirection('row'),
2 replies