# Collection Widget

Display a list of entries from a collection.

## Configuring

Widgets can be added to the dashboard by modifying the `widgets` array in the `config/statamic/cp.php` file.

``` php
// config/statamic/cp.php

'widgets' => [
  [ // [tl! focus:start]
      'type' => 'collection',
      'collection' => 'blog',
      'limit' => 10,
  ], // [tl! focus:end]
],
