Commit 86811593 by haojie

1

parent 10edde57
...@@ -16,21 +16,24 @@ public function index(Content $content) ...@@ -16,21 +16,24 @@ public function index(Content $content)
return $content return $content
->header('Dashboard') ->header('Dashboard')
->description('Description...') ->description('Description...')
->body(function (Row $row) { ->body(
$row->column(6, function (Column $column) { ''
$column->row(Dashboard::title()); // function (Row $row) {
$column->row(new Examples\Tickets()); // $row->column(6, function (Column $column) {
}); // $column->row(Dashboard::title());
// $column->row(new Examples\Tickets());
$row->column(6, function (Column $column) { // });
$column->row(function (Row $row) { //
$row->column(6, new Examples\NewUsers()); // $row->column(6, function (Column $column) {
$row->column(6, new Examples\NewDevices()); // $column->row(function (Row $row) {
}); // $row->column(6, new Examples\NewUsers());
// $row->column(6, new Examples\NewDevices());
$column->row(new Examples\Sessions()); // });
$column->row(new Examples\ProductOrders()); //
}); // $column->row(new Examples\Sessions());
}); // $column->row(new Examples\ProductOrders());
// });
// }
);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment