How to set the Dashboard columns to 3 using custom widgets

How can I make this 3 columns?

<?php

namespace App\Filament\Pages;

use Filament\Pages\Dashboard as BasePage;

class Dashboard extends BasePage
{
protected function getColumns(): int | array
{
return 3;
}
}
?>
image.png
Was this page helpful?