<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property int $profit_id
* @property string $value_type
* @property string $value
* @property float $weight
*/
class ProfitValue extends Model
{
public $timestamps = false;
protected $fillable = [
'profit_id',
'value_type',
'value',
'weight',
];
}