public static function form( Form $form ): Form {
return $form
->schema( [
Forms\Components\Group::make()->schema( [
Forms\Components\Section::make()
->schema( static::getDetailsFormSchema() )
->columns( 2 ),
Forms\Components\Section::make()
->schema( [ static::getItemsRepeater() ] )
->columns( 1 ),
Forms\Components\Section::make()
->schema( static::getQuoteGrandTotalsSchema() )
->columns( 1 ),
] )
] )
->columns( null );
}
public static function form( Form $form ): Form {
return $form
->schema( [
Forms\Components\Group::make()->schema( [
Forms\Components\Section::make()
->schema( static::getDetailsFormSchema() )
->columns( 2 ),
Forms\Components\Section::make()
->schema( [ static::getItemsRepeater() ] )
->columns( 1 ),
Forms\Components\Section::make()
->schema( static::getQuoteGrandTotalsSchema() )
->columns( 1 ),
] )
] )
->columns( null );
}