nirmal/random

1 2017-04-24 13:54 UTC

This package is auto-updated.

Last update: 2024-10-05 11:41:45 UTC


README

it is for laravel 5+

Installation

Begin by installing this package through Composer. Just run following command to terminal-

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.

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

Now add the alias.

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

This package provide various type of commands like random number, random captcha image etc.

generator in html

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