29 lines
553 B
PHP
29 lines
553 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Payment extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
public function santri()
|
|
{
|
|
return $this->belongsTo(Santri::class, 'santri_id', 'id');
|
|
}
|
|
|
|
public function wallet()
|
|
{
|
|
return $this->belongsTo(Wallet::class, 'wallet_id', 'id');
|
|
}
|
|
|
|
public function detailPayments()
|
|
{
|
|
return $this->hasMany(DetailPayment::class, 'payment_id', 'id');
|
|
}
|
|
}
|