From: soufiane Date: Mon, 3 Nov 2025 13:16:52 +0000 (+0100) Subject: #7828 @0:01 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=c14513e8fcaf34dd9ca74f2a5381452cca9c5eed;p=fluidbook-toolbox.git #7828 @0:01 --- diff --git a/app/Models/FluidbookCollection.php b/app/Models/FluidbookCollection.php index d0b5ec297..60d4b9ae0 100644 --- a/app/Models/FluidbookCollection.php +++ b/app/Models/FluidbookCollection.php @@ -38,6 +38,7 @@ use Http\Client\Exception; use Illuminate\Database\Eloquent\Builder; use Illuminate\Http\UploadedFile; use Illuminate\Support\Facades\Auth; +use PhpOffice\PhpSpreadsheet\Spreadsheet; use Typesense\Client; use Typesense\Exceptions\ConfigError; use Typesense\Exceptions\TypesenseClientError; @@ -308,4 +309,8 @@ class FluidbookCollection extends ToolboxStatusModel $c->update(['publications' => json_encode($publications)]); } } + + public function exportExcel() { + $xls = new Spreadsheet(); + } }