match_making/app/Models/PenawaranPendanaan.php
2025-01-02 09:09:28 +07:00

23 lines
427 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PenawaranPendanaan extends Model
{
use HasFactory;
protected $table = 'penawaran_pendanaan';
protected $fillable = [
'penawaran_project_id',
'jumlah_dana',
];
public function project()
{
return $this->belongsTo(PenawaranProject::class);
}
}