Merge two cards with different number of columns without having borders

What's the correct way to do this?

Forms\Components\Card::make()
  ->schema([
    Forms\Components\Card::make()
      ->schema([
      ])->columns(2),
    Forms\Components\Card::make()
      ->schema([
      ])->columns(3),
  ])->columnSpan(2)
image.png
Was this page helpful?