taymaz/scode

receipt Security code in custom type

1.0 2021-12-17 09:35 UTC

This package is not auto-updated.

Last update: 2024-06-03 23:23:30 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

scode

receipt Security code in custom type get Verification code too easy with one line code

Install

From your terminal:

composer require taymaz/scode

This starts to install scode package its working with composer so you can use it to easy.

Basic use

in your app where you like add this part of code to get Verification code and use it .

First require package

use Taymaz\Scode\Scode;

then Add this code to get Verification code

this code going to return pin code like : 8456

Scode::pinCode()->apply();

you can also get code with particular lentgh size :

Scode::pinCode()->size(6)->apply();