Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
Надо сделать API
Schema::create('news', function (Blueprint $table) { $table->id(); $table->string('slug')->unique(); $table->string('title'); $table->mediumText('content')->nullable(); $table->text('short_text')->nullable(); $table->string('cover')->nullable(); $table->boolean('published')->default(true); $table->timestamp('published_at')->nullable()->index(); $table->timestamps(); $table->softDeletes(); });