2021-07-17 18:46:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Payment;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Pdf\PdfGenerator;
|
2022-02-12 16:44:43 +01:00
|
|
|
use App\Pdf\PdfRepository;
|
2021-07-17 18:46:02 +02:00
|
|
|
use App\Pdf\PdfRepositoryFactory;
|
2022-02-12 16:44:43 +01:00
|
|
|
use Illuminate\Contracts\Support\Responsable;
|
2021-07-17 18:46:02 +02:00
|
|
|
use Illuminate\Http\Request;
|
2022-02-12 16:44:43 +01:00
|
|
|
use Illuminate\Http\Response;
|
2021-07-17 18:46:02 +02:00
|
|
|
use Inertia\Inertia;
|
|
|
|
use Inertia\Response as InertiaResponse;
|
|
|
|
|
|
|
|
class SendpaymentController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
public function create(): InertiaResponse
|
|
|
|
{
|
|
|
|
session()->put('menu', 'member');
|
|
|
|
session()->put('title', 'Rechnungen versenden');
|
|
|
|
|
2022-02-12 14:47:07 +01:00
|
|
|
return Inertia::render('sendpayment/VForm', [
|
2021-10-29 21:44:23 +02:00
|
|
|
'types' => app(ActionFactory::class)->allLinks(),
|
2021-07-17 18:46:02 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-02-12 16:44:43 +01:00
|
|
|
/**
|
|
|
|
* @return Response|Responsable
|
|
|
|
*/
|
2021-07-17 18:46:02 +02:00
|
|
|
public function send(Request $request)
|
|
|
|
{
|
2021-07-18 21:38:00 +02:00
|
|
|
$repo = app(PdfRepositoryFactory::class)->forAll($request->type, 'Post');
|
2021-07-17 18:46:02 +02:00
|
|
|
|
2021-07-17 19:21:27 +02:00
|
|
|
$pdfFile = app(PdfGenerator::class)->setRepository($repo)->render();
|
2021-07-18 21:38:00 +02:00
|
|
|
app(PdfRepositoryFactory::class)->afterAll($request->type, 'Post');
|
2021-07-17 19:21:27 +02:00
|
|
|
|
2021-07-17 18:46:02 +02:00
|
|
|
return $repo === null
|
|
|
|
? response()->noContent()
|
2021-07-17 19:21:27 +02:00
|
|
|
: $pdfFile;
|
2021-07-17 18:46:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|