Simple GUID generator Package for Laravel 4
Simple GUID generator Package for Laravel 4, (*2)
Begin by installing this package through Composer. Edit your project's composer.json
file to require Nathanmac/laravel-guid
., (*3)
"require": { "nathanmac/laravel-guid": "dev-master" }
Next, update Composer from the Terminal:, (*4)
composer update
Once this operation completes, the final step is to add the service provider. Open app/config/app.php
, and add a new item to the providers array., (*5)
'Nathanmac\GUID\GUIDServiceProvider'
echo "GUID: " . GUID::generate(); // GUID: 582B5733-8AE1-79D2-DB8F-5720ECBE4306
echo "GUID: " . GUID::generate('custom salt value'); // GUID: 582B5733-8AE1-79D2-DB8F-5720ECBE4306
echo "GUID: " . GUID::generate(false, true); // GUID: {582B5733-8AE1-79D2-DB8F-5720ECBE4306}