direction of the table filter

how to change the direction of the table filter, I can't use use extraAttributes for it, to set it flex
what should is do ?

looking filter created from , created until look different
Screenshot_from_2024-09-23_16-21-00.png
Solution
Have you tried using form layout components?

*Filament\Forms\Components\Grid * should work inside the form() method

->form([                                               Filament\Forms\Components\Grid:make([

        DatePicker::make('created_from')
          ->label(__('filters.created_from')),

        DatePicker::make('created_until')
          ->label(__('filters.created_until')),
      ]),
 ])
Was this page helpful?