darwin
darwin
FFilament
Created by darwin on 12/22/2023 in #❓┊help
Table tabs in filament 2
is there a way to implement table tabs in filament version 2?
8 replies
FFilament
Created by darwin on 11/17/2023 in #❓┊help
custom page with table
hello everyone, i made a custom page for my model and i want to display a table for this, here is my code:
class StudentReport extends Page
{
protected static ?string $model = Student::class;

protected static ?string $navigationIcon = 'heroicon-o-document-text';

protected static string $view = 'filament.pages.student-report';

protected static ?string $navigationGroup = 'Reports';

protected static ?int $navigationSort = 3;

public static function table(Table $table): Table
{
return $table
->columns([

]);
}


}
class StudentReport extends Page
{
protected static ?string $model = Student::class;

protected static ?string $navigationIcon = 'heroicon-o-document-text';

protected static string $view = 'filament.pages.student-report';

protected static ?string $navigationGroup = 'Reports';

protected static ?int $navigationSort = 3;

public static function table(Table $table): Table
{
return $table
->columns([

]);
}


}
unfortunately it doesnt display on my page. is there a way to display a table for my model? thanks
3 replies
FFilament
Created by darwin on 11/16/2023 in #❓┊help
Export filtered table
Hello everyone, is there a way to export a filtered table and only export the data that was filtered? for example exporting a list of students based on filtered by status, or school ? thanks everyone
5 replies
FFilament
Created by darwin on 8/25/2023 in #❓┊help
Displaying related data on form fields from deleted record.
Hello everyone, i just want to ask how do i display the data from related models on the form fields when a record is soft deleted. i just noticed that the data from other models doesnt exist anymore on the fields and i need to restore the record in order to display it again. thanks!
5 replies
FFilament
Created by darwin on 7/20/2023 in #❓┊help
Custom page with action
10 replies
FFilament
Created by darwin on 6/27/2023 in #❓┊help
select
7 replies
FFilament
Created by darwin on 6/26/2023 in #❓┊help
date
hello everyone, i just want to ask how to make a column in filament where i could display a start date and end date into 1 column only. thanks in advance
3 replies
FFilament
Created by darwin on 6/26/2023 in #❓┊help
textinput relationship
hello everyone, i would just like to ask how would you add rules to a text input field where the field is a column from a table where the resource model has a relationship?
3 replies
FFilament
Created by darwin on 6/22/2023 in #❓┊help
affixes
hello guys, is there a way to make the suffixAction() or prefixAction() to be a button instead of an icon button? just a rectangular button.
9 replies
FFilament
Created by darwin on 6/22/2023 in #❓┊help
text input
hello i would just like to ask an idea how i could place a button beside a text input where whenever i click it it would generate a text, i already created the function to generate a text but i am confused on how to add it on a textinput field.
3 replies