snick / laravel-file-downloader
Laravel 文件下载包
dev-master
2022-09-14 07:24 UTC
Requires
- php: ^8.0|^8.1
- barryvdh/laravel-dompdf: ^1.0
This package is auto-updated.
Last update: 2024-09-16 13:50:09 UTC
README
运行以下命令以安装包的最新适用版本
composer require snnick/laravel-file-downloader
安装后,您可以使用 vendor:publish
命令发布包配置。此命令将 file-downloader.php
配置文件发布到您的配置目录
php artisan vendor:publish --provider="Snnick\LaravelFileDownloader\LaravelFileDownloaderServiceProvider"
您可以在 .env
文件中配置文件路径
FILE_DOWNLOAD_PATH=app/public/files
下载
您可以下载文件
$strategy = new PdfDownloader( 'pdf.invoices', 'invoices', ['calculations' => new CalculationsDTO($calculations)] ); $service = new FileDownloaderService($strategy); $filepath = $service->download();