TiagoSilvaPereira / vemto-filament-plugin

A Vemto plugin for generating Filament admin panels
21 stars 9 forks source link

Suggestion: wrap the form with card to make it looks nicer like the demo #5

Closed jay2success closed 2 years ago

jay2success commented 2 years ago

Hi,

This is not an issue, just suggestion. The suggestion is to wrap all the form with Card so it will looks better, just like filament demo. The current form has no card/background so visually looks confusing.

Current form: return $form->schema([ Grid::make()->schema([

Suggestion: return $form->schema([ Forms\Components\Card::make() ->schema([ Grid::make()->schema([

Hope you will accept this. Thanks again for this awesome plugin.

TiagoSilvaPereira commented 2 years ago

@jay2success thank you for your suggestion

TiagoSilvaPereira commented 2 years ago

Added to the latest version

jay2success commented 2 years ago

Awesome, thanks for the support.