Hezecom: Laravel Project and Admin Maker
dashboard
Dashboard
GENERATE MIGRATIONS
help
Quick Start
web
Create Table
swap_vertical_circle
Relational Table
verified_user
Run Migrations
OTHERS
dashboard
Preview
cloud_circle
Manage Database
cloud_circle
Documentation
Create Migrations
Just adjust the
$table->
fields only to fit yours as shown in the box. The class and method will be created automatically.
View DataTypes
TABLE NAME:
SAVE TABLE AS:
$table->id(); $table->integer('product_id')->unsigned(); $table->foreign('product_id')->references('id')->on('users'); //make sure the referenced table already exist. $table->timestamp('order_date'); $table->text('comment')->nullable(); $table->string('order_status')->nullable();
UPLOAD FIELD
Save Table