Looking to hire Laravel developers? Try LaraJobs

laravel maintained by thefunpower

Description
laravel
Author
kenken
Last update
2024/04/09 11:54 (dev-main)
License
Links
Downloads
3
Tags

Comments
comments powered by Disqus

安装

composer require thefunpower/laravel

数据表

Schema::create('config', function (Blueprint $table) {
    $table->id();
    $table->string('title')->index(); 
    $table->text('body')->nullable(); 
    $table->unsignedInteger('created_at'); 
    $table->unsignedInteger('updated_at');  
});