mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 20:21:10 -04:00
v5.0.0 update
This commit is contained in:
22
app/Http/Controllers/V1/PDF/DownloadPaymentPdfController.php
Normal file
22
app/Http/Controllers/V1/PDF/DownloadPaymentPdfController.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Http\Controllers\V1\PDF;
|
||||
|
||||
use Crater\Http\Controllers\Controller;
|
||||
use Crater\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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user