25 lines
628 B
PHP
25 lines
628 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ClassificationResult extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
protected $casts = ['confidence_score' => 'float'];
|
|
public function scopeInternal($q) { return $q->where('source_type', 'internal_mif'); }
|
|
public function scopeNeedsReview($q) { return $q->where('status', 'needs_review'); }
|
|
|
|
public function internalRaw()
|
|
{
|
|
return $this->belongsTo(InternalRawData::class, 'nim', 'nim');
|
|
}
|
|
|
|
public function kemendikRaw()
|
|
{
|
|
return $this->belongsTo(KemendikRawData::class, 'nim', 'nimhsmsmh');
|
|
}
|
|
}
|
|
|