```php
if(!Schema::hasTable('test')){
  Schema::create('test', function ($table) {
    $table->increments('id');
    $table->string('name'); 
  });
}

DB::table('test')->insert(['name'=>'123']);
```
点赞 ({{click_count}}) 收藏 (0)

Laravel 8 .0 已经发布,发行说明

Laravel api 返回 Http 429 问题解决方法