Neo Vision
  • Services
  • Work
  • About
  • Careers
  • Blog
  • Contact
  • Home
  • About
  • Services
  • Careers
  • Work
  • Blog
  • Contact

Our socials

  • Linkedin
  • Facebook
  • Instagram

Our address

Lucretiu Patrascanu nr. 14, BL. MY3, AP 24, Sector 3, 030508
Bucharest, Romania

Our contact

  • hello@neovision.dev
  • +40 727 812 725
What we found on the web
Young man with eyes closed and pink face mask surounded by green bubbles
The Most Likely Way You’ll Get Infected With Covid-19
from medium.com
Check it out
Back

Confidas

Confidas is a fin-tech web app that allows companies in Romania in predicting good outcomes from future collaborations with other companies.

2017- Present
project mockup Confidas

Debrief

The objective was to create a platform that integrates multiple data feeds in order to profile a prospective partner/client so companies can make an informed decision regarding their potential collaborator furtherly contributing to a safer business environment.

  • Client Confidas
  • Design Neo Vision
  • Roles Product Strategy,
    UI & UX Design,
    Frontend Development,
    Backend Development,
    DevOps,
    Continuous Integration,
    A.I.

The Process

digital-strategy-icon

Digital Strategy

  • Full Project Brief
  • SRSD (Software Requirements Specifications Document)
  • GIT, Issue Tracking and Development Server
  • Business Process Analysis
  • Product Prototype
delivery-icon

Development

  • Front-end Development
  • Back-end Development
  • API Integrations
  • Internal Testing
  • Feedback and Revisions implementation
development-icon

Delivery & Expansion

  • Production server architecture configuration
  • Production Server Deployment
  • Maintenance and Administration
  • Continuous Development
  • Continuous Integration

What we used

Laravel-white-svg

Laravel

Web application framework with expressive, elegant syntax.

php-icon

PHP

PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

HTML5-white-svg-5

HTML

HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page's appearance/presentation (CSS) or functionality/behavior (JavaScript).

css-logo-icon

CSS

HTML defines content, CSS decorates it and helps tell how it is displayed. CSS stands for Cascading Stylesheet. This means that there is a hierarchy of style attributes overwriting other attributes that affect the same elements.

JavaScript-white-svg3

JavaScript

JavaScript is a computer-readable language that has many uses, most notably in web pages. JavaScript is "read" or interpreted by your browser, like Chrome or Firefox, which executes the instructions. JavaScript enhances the web page by allowing it to become more "interactive."

Eloqent-white-svg-2

Eloquent

The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database. Each database table has a corresponding "Model" which is used to interact with that table.

MySQL_white-svg

MySQL

MySQL is the world's most popular open source database. Whether you are a fast growing web property, technology ISV or large enterprise, MySQL can cost-effectively help you deliver high performance, scalable database applications.

CentOS_logo-white-svg

CentOS

The CentOS Linux distribution is a stable, predictable, manageable and reproducible platform derived from the sources of Red Hat Enterprise Linux (RHEL).

Gitlab-white-svg-2

GitLab

A repository is what you use to store your codebase in GitLab and change it with version control.

The result

https://neovision.dev/wp-content/uploads/2020/10/Confidas.m4v
Confidas desktop preview of home page featuring a search box and a tutorial video
  • Over 3.000.000 companies in the DB
  • Over 3.000 hours of coding and counting
  • 3 iterations and counting
Confidas desktop preview of features and partners
Confidas tablet preview of subsciption plans
Confidas smarthpone preview of search feature
Confidas smarthpone preview of hamburger menu
Confidas smarthpone preview of features
We’ve built the platform from scratch to what you see today. We’ve been involved from the early sketch process, the early pitches to investors, the prototype, the first functional MVP up until the first production release, the refactoring process and the V2 release.

Everything from the website to the platform is builton Laravel wih a custom CMS. We have over 10 data sources, integrated either via API or scraping. Condidas attracted over 200k in investor money and was covered by all top business magazines.

Next project
Luive
View
Neo Vision

Our socials

  • Linkedin
  • Facebook
  • Instagram

Our address

Lucretiu Patrascanu nr. 14, BL. MY3, AP 24, Sector 3, 030508
Bucharest, Romania

Our contact

  • hello@neovision.dev
  • +40 727 812 725

Footer menu

  • Terms & Conditions
  • Privacy Policy
  • Cookie Policy
© 2020 Neo Vision
Branding and design by our 💖 friends at High Contrast
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');
    }