MIF_E31210245/app/Models/Cicilan.php

24 lines
462 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Cicilan extends Model
{
use HasFactory;
protected $table = 'cicil';
protected $fillable = [
'tgl',
'total',
'bukti_pembayaran',
'tagihan_id',
'user_id',
];
public function jenistagihan()
{
return $this->belongsTo(tagihan::class, 'tagihan_id', 'id');
}
}