PHP code example of rorecek / laravel-autoincrement
1. Go to this page and download the library: Download rorecek/laravel-autoincrement 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/ */
rorecek / laravel-autoincrement example snippets
php
// App\Console\Kernel.php
protected function schedule(Schedule $schedule)
{
$schedule->call(function () {
AutoIncrement::table('messages')->add(35);
})->hourly();
$schedule->call(function () {
AutoIncrement::table('registrations')->addRandomBetween(10, 100);
AutoIncrement::table('bookings')->addRandomBetween(100, 500);
})->daily();
}
php
AutoIncrement::connection('foo')->table('items')->...
// Using different connection
AutoIncrement::table('items')->set(function () {
return (int) date('ymd') . 1001;
});
// Using closure