21 lines
318 B
PHP
21 lines
318 B
PHP
<?php
|
|
|
|
namespace App\Events\Common;
|
|
|
|
use App\Abstracts\Event;
|
|
|
|
class BulkActionsAdding extends Event
|
|
{
|
|
public $bulk_action;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param $bulk_action
|
|
*/
|
|
public function __construct($bulk_action)
|
|
{
|
|
$this->bulk_action = $bulk_action;
|
|
}
|
|
}
|