id(); $table->text('body'); $table->string('image')->nullable(); $table->string('tag')->nullable(); $table->unsignedBigInteger('user_id'); $table->unsignedTinyInteger('status')->default(0); $table->json('data')->nullable(); $table->timestamps(); $table->foreign('user_id') ->references('id')->on('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sliders'); } };