'int', 'amount' => 'float', ]; protected $fillable = [ 'user_payment_option_id', 'amount', 'status', ]; public function user_payment_option() { return $this->belongsTo(UserPaymentOption::class); } public function invoices() { return $this->hasMany(Invoice::class); } }