whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Exceptions
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/app/Exceptions/DuplicatePaymentException.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Exceptions; use Exception; use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; class DuplicatePaymentException extends Exception { /** * Report the exception. * * @return void */ public function report() { // } /** * Render the exception into an HTTP response. * * @param Request $request * @return JsonResponse */ public function render($request) { return response()->json([ 'message' => 'Duplicate request', ], 400); } }
Copyright ©2021 || Defacer Indonesia