How to create database schema (table) in Laravel?

后端 未结 5 1140
眼角桃花
眼角桃花 2021-02-09 07:53

I\'m new to Laravel.I\'m trying to create database in Laravel. I tried in console with:

Schema::create

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-09 08:20

    If you want to create model with artisan do it this way:

    php artisan make:model ModelName
    

提交回复
热议问题