This commit is contained in:
Dr Masroor Ehsan 2025-01-11 11:28:35 +06:00
parent a9d2b34e6f
commit ab6ea64e4d
7 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@
use App\Http\Controllers\Controller;
use App\Models\StudyReport;
use App\Services\Export\Exporters;
use App\Services\ReportStorage;
use App\Services\Report\ReportStorage;
final class ReportDownloadController extends Controller
{

View File

@ -4,7 +4,7 @@
use App\Domain\Report\ExportFormat;
use App\Domain\Report\ReportStatus;
use App\Services\ReportStorage;
use App\Services\Report\ReportStorage;
use Illuminate\Database\Eloquent\Concerns\HasTimestamps;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Support\Facades\Storage;

View File

@ -4,7 +4,7 @@
use App\Domain\Report\ExportFormat;
use App\Services\Export\ExportDocumentBase;
use App\Services\ReportStorage;
use App\Services\Report\ReportStorage;
use Illuminate\Support\Facades\Blade;
final class HtmlExport extends ExportDocumentBase

View File

@ -4,7 +4,7 @@
use App\Domain\Report\ExportFormat;
use App\Services\Export\ExportDocumentBase;
use App\Services\ReportStorage;
use App\Services\Report\ReportStorage;
use Barryvdh\DomPDF\Facade\Pdf;
final class PdfExport extends ExportDocumentBase

View File

@ -4,7 +4,7 @@
use App\Domain\Report\ExportFormat;
use App\Services\Export\ExportDocumentBase;
use App\Services\ReportStorage;
use App\Services\Report\ReportStorage;
use CreateDocx;
final class Word2003Export extends ExportDocumentBase

View File

@ -4,7 +4,7 @@
use App\Domain\Report\ExportFormat;
use App\Services\Export\ExportDocumentBase;
use App\Services\ReportStorage;
use App\Services\Report\ReportStorage;
use CreateDocx;
use Illuminate\Support\Facades\Blade;

View File

@ -1,6 +1,6 @@
<?php
namespace App\Services;
namespace App\Services\Report;
use App\Models\Study;
use Illuminate\Support\Facades\Storage;