2017 © Pedro Peláez
 

library random

Random Number Generator

image

nirmal/random

Random Number Generator

  • Monday, April 24, 2017
  • by nirmalsharmamca
  • Repository
  • 1 Watchers
  • 0 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel-random-string

it is for laravel 5+, (*1)

Installation

Begin by installing this package through Composer. Just run following command to terminal-, (*2)

composer require nirmal/random=dev-master

Once this operation completes, the final step is to add the service provider & aliases. Open config/app.php, and add a new item to the providers array., (*3)

'providers' => [
    ...
    Nirmal\Random\RandomServiceProvider::class,
    ...
]

Now add the alias., (*4)

'aliases' => [
    ...
    'Ndom' => Nirmal\Random\Facades\RandomFacade::class,
    ...
]

This package provide various type of commands like random number, random captcha image etc., (*5)

generator in html, (*6)

Route::get('/', function () {
    $x = Ndom::create();
    echo "<img src='$x' />"; 
    die;
    return view('welcome');
});

The Versions

24/04 2017

dev-master

9999999-dev

Random Number Generator

  Sources   Download

GNU

by Nirmal Sharma

24/04 2017

1

1.0.0.0

Random Number Generator

  Sources   Download

GNU

by Nirmal Sharma