v2.1.0
Add support for optional unified attributes (See #100)
class MyAction
{
use AsAction;
use WithAttributes;
public function handle(array $attributes = [])
{
$this->fill($attributes);
$this->validateAttributes();
// ...
}
}