45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Payment;
 | |
| 
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Invoice\BillKind;
 | |
| use App\Invoice\DocumentFactory;
 | |
| use App\Invoice\Queries\BillKindQuery;
 | |
| use Illuminate\Contracts\Support\Responsable;
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Http\Response;
 | |
| use Inertia\Inertia;
 | |
| use Inertia\Response as InertiaResponse;
 | |
| use Zoomyboy\Tex\Tex;
 | |
| 
 | |
| class SendpaymentController extends Controller
 | |
| {
 | |
|     public function create(): InertiaResponse
 | |
|     {
 | |
|         session()->put('menu', 'member');
 | |
|         session()->put('title', 'Rechnungen versenden');
 | |
| 
 | |
|         return Inertia::render('sendpayment/VForm', [
 | |
|             'types' => app(ActionFactory::class)->allLinks(),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return Response|Responsable
 | |
|      */
 | |
|     public function send(Request $request)
 | |
|     {
 | |
|         $invoice = app(DocumentFactory::class)->singleInvoice($request->type, new BillKindQuery(BillKind::POST));
 | |
| 
 | |
|         if (is_null($invoice)) {
 | |
|             return response()->noContent();
 | |
|         }
 | |
| 
 | |
|         $pdfFile = Tex::compile($invoice);
 | |
|         app(DocumentFactory::class)->afterSingle($invoice);
 | |
| 
 | |
|         return $pdfFile;
 | |
|     }
 | |
| }
 |