id(); $table->string('name')->nullable(); $table->string('email')->unique(); $table->string('photo')->nullable(); $table->string('password')->nullable(); $table->string('token')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('admins'); } };