Basic implementation of payment methods

This commit is contained in:
2026-07-28 15:50:58 +02:00
parent afc91545a9
commit 6c9281516e
39 changed files with 749 additions and 24 deletions
@@ -0,0 +1,11 @@
<?php
namespace App\RelationModels;
use App\Scopes\CommonModel;
class EventPaymentMethods extends CommonModel
{
protected $table = 'event_payment_methods';
protected $fillable = ['event_id', 'available_payment_method_id'];
}