mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-10-12 16:46:03 +02:00
17 lines
322 B
PHP
17 lines
322 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\BtcPayWebhook;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class DonationController extends Controller
|
|
{
|
|
public function invoiceSettled()
|
|
{
|
|
$btcPayWebhook = new BtcPayWebhook();
|
|
$btcPayWebhook->processWebhook();
|
|
}
|
|
}
|