Makes model called
Post
php artisan make:model Post
With the following basic content
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
    //
}
Creates
Post
model and also migrations to create table for the model
php artisan make:model Post -m
The migration file location is
database/migrations/2020_09_02_041219_create_posts_table.php
by Valeri Tandilashvili
4 years ago
Laravel
artisan commands
Laravel From Scratch
1
Pro tip: use ```triple backticks around text``` to write in code fences