FiFreshChecker/app/Models/Prediction.php

20 lines
321 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Prediction extends Model
{
protected $fillable = [
'image_id',
'kelas_model',
'prob_fresh',
'tingkat_kesegaran'
];
public function image()
{
return $this->belongsTo(Image::class);
}
}