
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' => 'form', 'form' => 'contact', 'fields' => ['name', 'email'], 'limit' => 10, ], ],
Options
form
string
required
The form's handle.
width
int
Width of dashboard area as a percentage.
limit
int
Limit number of submissions. Default: 5.
fields
array
An array of field handles to include in the list.