mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-08 07:41:45 +00: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();
|
||
|
}
|
||
|
}
|