mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 12:11:08 -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\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);
 | |
|     }
 | |
| }
 |