Skip to content

Instantly share code, notes, and snippets.

View Sebbo94BY's full-sized avatar
🎯
Focusing

Sebbo94BY

🎯
Focusing
View GitHub Profile
@Sebbo94BY
Sebbo94BY / IdentityCard.class.php
Last active September 5, 2021 01:35
A simple PHP class to check the validity of an identity card and to get some basic information like the age of the person.
<?php
/**
* PHP class to check the validity of an identity card and to get some basic information like the age of the person.
*
* @author PHP-einfach.de <https://www.php-einfach.de/diverses/personalausweis-ueberpruefen/>
* @author Sebastian Krätzig <info@ts3-tools.info>
*/
class IdentityCard
{
/**
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Auth;
use App\Sessions;
use App\LastLogins;