Allow to add Module's fields to the search and filter

This commit is contained in:
Burak Çakırel
2021-09-06 11:15:53 +01:00
parent 332d76b77b
commit 44e3ec8679
4 changed files with 61 additions and 4 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace App\Events\Common;
use App\Abstracts\Event;
class SearchStringApplying extends Event
{
public $query;
/**
* Create a new event instance.
*
* @param $query
*/
public function __construct($query)
{
$this->query = $query;
}
}