This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 <[email protected]> | |
*/ | |
class IdentityCard | |
{ | |
/** |