worksome/laravel-onfido

A Laravel wrapper for the Onfido PHP client
438,826 1
Install
composer require worksome/laravel-onfido
Latest Version:v6.4.0
PHP:^8.4
License:MIT
Last Updated:Mar 2, 2026
Links: GitHub  ·  Packagist
Maintainer: andrevalentin

Onfido Laravel

A Laravel wrapper for the Onfido PHP API Client.

Installation

Install using composer:

composer require worksome/laravel-onfido

Publish the configuration file with the following command:

php artisan vendor:publish --provider "Worksome\Onfido\OnfidoServiceProvider"

Configuration

Remember to add your Onfido API key to your .env file.

ONFIDO_API_KEY=api_sandbox.ABC...

Usage

I would always encourage anyone to use the official PHP package as reference, and this is simply a Laravel wrapper. However, I will provide an example on how to create an applicant.

Remember to import the Onfido facade, by adding use Worksome\Onfido\Facades\Onfido; at the top of your file.

To create an applicant and send a check:

use Onfido\Model\ApplicantBuilder;
use Onfido\Model\CheckBuilder;
use Worksome\Onfido\Facades\Onfido;

$applicant = Onfido::createApplicant(new ApplicantBuilder([
    'first_name' => 'John',
    'last_name' => 'Doe',
    'email' => 'johndoe@example.org',
]));

$onfidoCheck = Onfido::createCheck(new CheckBuilder([
    'applicant_id' => $applicant['id'],
    'report_names' => ['right_to_work'],
    'applicant_provides_data' => true,
]));

The above is all that is required to create an applicant and send the applicant a right to work check via Onfido.

You can then consult the results of the applicant or check:

/** @var \Onfido\Model\ApplicantResponse $applicant */
$applicant->getId();

/** @var \Onfido\Model\CheckResponse $onfidoCheck */
$onfidoCheck->getId();

// The responses can also be accessed as an arrayable.
$applicant['id'];
$onfidoCheck['id'];
$onfidoCheck['status'];
$onfidoCheck['form_uri'];

To see all possible return data check the official PHP package documentation.

Related Packages

andrevalentin/laravel-onfido

A Laravel wrapper for the Onfido PHP client

170,030 4
jlorente/laravel-identitystamps

A Laravel plugin to register and keep control of the users who make creations, u...

6,174 1
filafly/filament-identity-column

A column for Filament Tables to which combines an avatar, name and description.

9,832 7
avto-dev/identity-laravel

IDEntity for Laravel

31,149 3
archerzdip/laravel-identity

Chinese ID number generate and verity.

3,429 7