Ensuring no hidden skeletons remain from that ‘free template’ fiasco.
30%
Parallax Image

Confidas

Neo Vision developed Confidas, a fintech platform providing businesses in Romania with in-depth profiles of potential partners and clients by integrating data from multiple sources. This platform supports companies in making safer, data-informed business decisions.

Parallax Image

Debrief

Client
Confidas
Design
Neo Vision
Role
Product Strategy, UI/UX, Frontend Development, Backend Development, DevOps, Continuous Development

Business Goals

Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image

Product Description

Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image

Development Process

Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image
Parallax Image

Backend Development

Neo Vision’s partnership with Confidas resulted in a powerful business intelligence tool for Romanian companies, providing transparency and reliability in the corporate landscape. In 2023, the project successfully exited to Termene.ro, Confidas’ largest competitor, marking a significant achievement for both Confidas and Neo Vision. Neo Vision’s role extended beyond development, augmenting Termene’s team post-acquisition, ensuring a smooth transition and continued platform growth.

The Confidas platform established itself as a leading fintech tool in Romania, amassing over 3 million company profiles and drawing over $200,000 in investor funding. The exit to Termene.ro demonstrated the platform’s market potential and Neo Vision’s capability to develop, scale, and drive value in fintech applications.

Let
's talk about
yo
ur
project
Confidas Code Snippet

namespace App\Models;

use Illuminate\Database\Eloquent\Model as Eloquent;

class MonitoredNotification extends Eloquent { protected $casts = [ 'account_id' => 'int', 'invoice_id' => 'int' ];

protected $fillable = [
    'account_id',
    'invoice_id',
    'created_by',
    'updated_by',
    'seen_at',
    'read_at'
];

public function account()
{
    return $this->belongsTo('App\Models\Account', 'account_id');
}

public function invoice()
{
    return $this->belongsTo('App\Models\Invoice', 'invoice_id');
}
Confidas Code Snippet

namespace App\Models;

use Illuminate\Database\Eloquent\Model as Eloquent;

class MonitoredNotification extends Eloquent { protected $casts = [ 'account_id' => 'int', 'invoice_id' => 'int' ];

protected $fillable = [
    'account_id',
    'invoice_id',
    'created_by',
    'updated_by',
    'seen_at',
    'read_at'
];

public function account()
{
    return $this->belongsTo('App\Models\Account', 'account_id');
}

public function invoice()
{
    return $this->belongsTo('App\Models\Invoice', 'invoice_id');
}