skip to Main Content

How can I adapt a Laravel query?

Help please... These are my migrations​ // Test 1 table public function up(): void { Schema::create('test1s', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('desc')->nullable(); $table->timestamps(); }); } next... // Test 2 table public function up(): void { Schema::create('test2s', function (Blueprint $table)…

VIEW QUESTION
Back To Top
Search