Refactored Color Livewire components, added CreateColor, EditColor, and ShowColor components. Updated views, navigation, and Tailwind color schemes. Adjusted database migrations for consistency.
This commit is contained in:
@@ -11,13 +11,12 @@ return new class extends Migration
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('buildplate', function (Blueprint $table) {
|
||||
Schema::create('buildplates', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('description');
|
||||
$table->foreignId('manufacturer_id')->constrained();
|
||||
$table->foreignId('manufacturer_id')->constrained('manufacturers');
|
||||
$table->string('temp_max');
|
||||
$table->string('amount');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user