renamed report events and listeners
This commit is contained in:
30
app/Events/Report/FilterApplying.php
Normal file
30
app/Events/Report/FilterApplying.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Report;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class FilterApplying
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
public $class;
|
||||
|
||||
public $model;
|
||||
|
||||
public $args;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param $class
|
||||
* @param $model
|
||||
* @param $args
|
||||
*/
|
||||
public function __construct($class, $model, $args)
|
||||
{
|
||||
$this->class = $class;
|
||||
$this->model = $model;
|
||||
$this->args = $args;
|
||||
}
|
||||
}
|
||||
22
app/Events/Report/FilterShowing.php
Normal file
22
app/Events/Report/FilterShowing.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Report;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class FilterShowing
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
public $class;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param $class
|
||||
*/
|
||||
public function __construct($class)
|
||||
{
|
||||
$this->class = $class;
|
||||
}
|
||||
}
|
||||
30
app/Events/Report/GroupApplying.php
Normal file
30
app/Events/Report/GroupApplying.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Report;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class GroupApplying
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
public $class;
|
||||
|
||||
public $model;
|
||||
|
||||
public $args;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param $class
|
||||
* @param $model
|
||||
* @param $args
|
||||
*/
|
||||
public function __construct($class, $model, $args)
|
||||
{
|
||||
$this->class = $class;
|
||||
$this->model = $model;
|
||||
$this->args = $args;
|
||||
}
|
||||
}
|
||||
22
app/Events/Report/GroupShowing.php
Normal file
22
app/Events/Report/GroupShowing.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Report;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class GroupShowing
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
public $class;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param $class
|
||||
*/
|
||||
public function __construct($class)
|
||||
{
|
||||
$this->class = $class;
|
||||
}
|
||||
}
|
||||
22
app/Events/Report/RowsShowing.php
Normal file
22
app/Events/Report/RowsShowing.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Report;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class RowsShowing
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
public $class;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param $class
|
||||
*/
|
||||
public function __construct($class)
|
||||
{
|
||||
$this->class = $class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user