We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08ae46 commit d491bffCopy full SHA for d491bff
src/WithExportQueue.php
@@ -14,14 +14,14 @@ trait WithExportQueue
14
/**
15
* Process dataTables needed render output.
16
*
17
- * @param string $view
+ * @param string|null $view
18
* @param array $data
19
* @param array $mergeData
20
* @return mixed
21
22
* @throws \Throwable
23
*/
24
- public function render($view, $data = [], $mergeData = [])
+ public function render(string $view = null, array $data = [], array $mergeData = [])
25
{
26
if (request()->ajax() && request('action') == 'exportQueue') {
27
return $this->exportQueue();
0 commit comments