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 modelphp artisan make:model Post -m
The migration file location isdatabase/migrations/2020_09_02_041219_create_posts_table.php