18 lines
340 B
PHP
18 lines
340 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PreferenceResultPlant extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'preference_result_plants';
|
|
protected $fillable = [
|
|
'id',
|
|
'plant_id',
|
|
'value_preference',
|
|
];
|
|
}
|