mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
23 lines
501 B
PHP
23 lines
501 B
PHP
<?php
|
|
|
|
namespace Crater\Http\Controllers\V1\PDF;
|
|
|
|
use Crater\Http\Controllers\Controller;
|
|
use Crater\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);
|
|
}
|
|
}
|