From 08af96b4957856fd8562488ac080d15446ed068f Mon Sep 17 00:00:00 2001 From: Arjay Angeles Date: Wed, 9 Apr 2025 16:02:25 +0800 Subject: [PATCH] fix: class name when using an abstract base --- src/WithExportQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WithExportQueue.php b/src/WithExportQueue.php index be46fad..c0ec660 100644 --- a/src/WithExportQueue.php +++ b/src/WithExportQueue.php @@ -36,7 +36,7 @@ public function render(?string $view = null, array $data = [], array $mergeData public function exportQueue(): string { $job = new DataTableExportJob( - [self::class, $this->attributes], + [get_class($this), $this->attributes], request()->all(), Auth::id() ?? 0, $this->sheetName(),