Models and Migrations

10 min read 2 views Jane Editor
Share:

Define schema and models.

Models & Migrations

php artisan make:model Post -m
Schema::create('posts', function (Blueprint $table) {
    $table->id();
    $table->string('title');
    $table->text('body');
    $table->timestamps();
});

Resources & Downloads

Comments (0)

Comments are disabled for this site.