1. Go to this page and download the library: Download laranex/laravel-myanmar-nrc library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
laranex / laravel-myanmar-nrc example snippets
php artisan mm-nrc:seed
//Validation
new \Laranex\LaravelMyanmarNRC\Rules\MyanmarNRC()
//Parsing the NRC from network
\Laranex\LaravelMyanmarNRC\LaravelMyanmarNrcFacade::parseNRC($nrc, $dbDriven, $lang)
(OR)
\Laranex\LaravelMyanmarNRC\LaravelMyanmarNrc::parseNRC($nrc, $dbDriven, $lang)
//$nrc represents the nrc (X-X-X-12345) from network,
//$drDriven defines if the application use database or predefined json file to parse, validate the nrc and,
//$lang is for the Languages (mm and en are supported) to be used in parsing.
//default values for $dbDriven & $lang will be read from config file if you do not pass the values to the method.