0, 'total_revenue' => 0, 'total_expenses' => 0, 'withdrawable' => false, ]; /** * @var array */ protected $casts = [ 'withdrawable' => 'bool', ]; /** * @var array */ protected $fillable = [ 'user_id', 'balance', 'total_expenses', 'total_revenue', 'withdrawable', ]; }