45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Scopes\InstancedModel;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $tenant
|
|
* @property string $slug
|
|
* @property string $name
|
|
* @property ?string $description
|
|
* @property bool $active
|
|
*/
|
|
class AvailablePaymentMethod extends InstancedModel
|
|
{
|
|
protected $table = 'available_payment_methods';
|
|
|
|
protected $fillable = [
|
|
'tenant',
|
|
'slug',
|
|
'name',
|
|
'description',
|
|
'active',
|
|
];
|
|
|
|
protected $casts = [
|
|
'active' => 'boolean',
|
|
];
|
|
|
|
public function paymentMethod(): BelongsTo
|
|
{
|
|
return $this->belongsTo(PaymentMethod::class, 'slug', 'slug');
|
|
}
|
|
|
|
public function events(): BelongsToMany
|
|
{
|
|
// Pivot verknüpft über den Slug -- Event::paymentMethods() greift daher automatisch nur
|
|
// auf Events des aktuell gebundenen Tenants zu (SiteScope auf Event + AvailablePaymentMethod).
|
|
return $this->belongsToMany(Event::class, 'event_payment_methods', 'slug', 'event_id', 'slug', 'id')->withTimestamps();
|
|
}
|
|
}
|