public function up(): void { Schema::create('orders', function (Blueprint $table) { $table->id(); $table->string('customer_name'); $table->string('phone'); $table->text('address'); $table->decimal('total_amount', 10, 2); $table->string('status')->default('pending'); $table->timestamps(); }); } Not Found
404
Not Found