invoiceninja/app/Events/TaskWasCreated.php
Holger Lösken 9095d90842 Added tasks to activity on dashboard
- Creating and updating tasks creates an activity now
- Each has its own event
- The activity is shown on the dashboard
2016-07-05 18:30:29 +02:00

28 lines
410 B
PHP

<?php namespace App\Events;
use App\Models\Task;
use Illuminate\Queue\SerializesModels;
/**
* Class TaskWasCreated
*/
class TaskWasCreated extends Event
{
use SerializesModels;
/**
* @var Task
*/
public $task;
/**
* Create a new event instance.
*
* @param Task $task
*/
public function __construct(Task $task)
{
$this->task = $task;
}
}