BulkAction re-factoring for module use core bulk action

This commit is contained in:
Cüneyt Şentürk
2020-09-22 00:37:00 +03:00
parent 61b7510ffc
commit 9abda76d22
12 changed files with 136 additions and 61 deletions

View File

@ -0,0 +1,22 @@
<?php
namespace App\Events\Common;
use Illuminate\Queue\SerializesModels;
class BulkActionsAdding
{
use SerializesModels;
public $bulk_action;
/**
* Create a new event instance.
*
* @param $bulk_action
*/
public function __construct($bulk_action)
{
$this->bulk_action = $bulk_action;
}
}