Configuring
Widgets can be added to the dashboard by modifying the widgets
array in the config/statamic/cp.php
file.
// config/statamic/cp.php 'widgets' => [ 'getting_started', [ 'type' => 'collection', 'collection' => 'blog', 'limit' => 10, ], ],
Options
collection
The collection's handle.
width
Width of dashboard area as a percentage. Accepts 25
, 33
, 50
, 66
, 75
and 100
.
sites
Determines the sites in which this widget should be displayed.
limit
Limit number of entries. Default: 5.
sort
Sort and order by field name. E.g. 'title:desc'
. Defaults to the collection's settings.
fields
An array of field handles to be displayed as columns in the widget.
title
The title of the widget. Defaults to the collection name.