*/ protected $fillable = [ 'offer_id', 'user_id', 'price', 'discount', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'price' => 'double', 'discount' => 'double', ]; }