Files
InvoiceShelf/app/Http/Controllers/V1/PDF/DownloadPaymentPdfController.php
Darko Gjorgjijoski 6b80b5f48d Change namespace
2024-01-27 23:53:20 +01:00

23 lines
519 B
PHP

<?php
namespace InvoiceShelf\Http\Controllers\V1\PDF;
use InvoiceShelf\Http\Controllers\Controller;
use InvoiceShelf\Models\Payment;
class DownloadPaymentPdfController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function __invoke(Payment $payment)
{
$path = storage_path('app/temp/payment/'.$payment->id.'.pdf');
return response()->download($path);
}
}