mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-08 22:14:48 +00:00
23 lines
519 B
PHP
23 lines
519 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Controllers\V1\PDF;
|
|
|
|
use InvoiceShelf\Http\Controllers\Controller;
|
|
use InvoiceShelf\Models\Invoice;
|
|
|
|
class DownloadInvoicePdfController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function __invoke(Invoice $invoice)
|
|
{
|
|
$path = storage_path('app/temp/invoice/'.$invoice->id.'.pdf');
|
|
|
|
return response()->download($path);
|
|
}
|
|
}
|