PHP code example of yui019 / hori
1. Go to this page and download the library: Download yui019/hori 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/ */
yui019 / hori example snippets
use Illuminate\Database\Schema\Blueprint;
use Yui019\Hori\Schema;
return new class extends Schema
{
public function create(): void
{
$this->table('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
$this->createDefaultLaravelTables();
// ...
}
};
php artisan hori:install
php artisan hori:generate