34 lines
665 B
PHP
34 lines
665 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PengumpulanTugas extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'pengumpulan_tugas';
|
|
|
|
protected $primaryKey = 'id_pengumpulan';
|
|
|
|
protected $fillable = [
|
|
'id_tugas',
|
|
'id_siswa',
|
|
'lampiran_tugas',
|
|
'tanggal_submit',
|
|
'exp',
|
|
'status',
|
|
];
|
|
|
|
public function siswa()
|
|
{
|
|
return $this->belongsTo(Siswa::class, 'id_siswa', 'id_siswa');
|
|
}
|
|
|
|
public function tugas()
|
|
{
|
|
return $this->belongsTo(Tugas::class, 'id_tugas', 'id_tugas');
|
|
}
|
|
} |