Bytespun on January 29th, 2019
We wanted to give users a whole pile of more control over the way you explore your content in the control panel. In Statamic 3, you'll be able to filter your listings by all sorts of methods, easily customize which columns are shown in a listing, and perform bulk actions on the resulting rows.
Check it out!
We're still working on implementing the core Filters and Actions across the various listings, so this will only continue to get better and more robust over time.
It's also quite simple to create your own Filters and Actions with a wee bit 'o code. For example, here's the Delete action.
<?php
namespace Statamic\Actions;
class Delete extends Action
{
protected $dangerous = true;
public function run($items)
{
$items->each->delete()
}
}
Getting exciting for Statamic 3 yet? We sure are.
Copyright 2019 Statamic