Grid Column
how can remove this space between column
Grid::make(3)->schema([
Forms\Components\TextInput::make('search')
->extraAttributes(['class' => 'w-full'])
->disableLabel(),
View::make('filament.components.button'),
Toggle::make('advance_search')
->label('Advance')
->reactive(),
])->extraAttributes(['class' => 'gap-4']),
4 Replies
Use
->columnSpan
on your fields to define the width.
You don't need the classes thencolumnSpan not remove extra space