realtebo
realtebo
FFilament
Created by realtebo on 1/18/2024 in #❓┊help
How to add date column?
Thanks. I didn't think to a simply format option .
4 replies
FFilament
Created by realtebo on 1/18/2024 in #❓┊help
How to avoid to add a resource to nav bar?
it works ! Thanks. Where did you find this info? In this way, I can have related records visible only when opening the master reccord in view/edit
5 replies
FFilament
Created by realtebo on 1/18/2024 in #❓┊help
how to add field to a view page?
Found! because I don't want to edit, I didn't add inputs to form . I added and all is working
public static function form(Form $form): Form
{
return $form
->schema([
TextInput::make('name')->label('nome'),
TextInput::make('description')->label('descrizione'),
]);
}
public static function form(Form $form): Form
{
return $form
->schema([
TextInput::make('name')->label('nome'),
TextInput::make('description')->label('descrizione'),
]);
}
4 replies