This commit is contained in:
2022-07-01 09:57:33 +08:00
parent 55f6d3f985
commit e7817162a3

View File

@@ -15,7 +15,7 @@ class HomeController extends Controller
return $content return $content
->title('Dashboard') ->title('Dashboard')
->description('Description...') ->description('Description...')
->row(Dashboard::title()) // ->row(Dashboard::title())
->row(function (Row $row) { ->row(function (Row $row) {
$row->column(4, function (Column $column) { $row->column(4, function (Column $column) {
@@ -26,9 +26,9 @@ class HomeController extends Controller
// $column->append(Dashboard::extensions()); // $column->append(Dashboard::extensions());
// }); // });
$row->column(4, function (Column $column) { // $row->column(4, function (Column $column) {
$column->append(Dashboard::dependencies()); // $column->append(Dashboard::dependencies());
}); // });
}); });
} }
} }