From f2c1407400dfcb2fe017006865a4ef395f9a64f5 Mon Sep 17 00:00:00 2001 From: 64160295 <99470276+Forsaksa@users.noreply.github.com> Date: Thu, 6 Apr 2023 11:19:11 +0700 Subject: [PATCH] database up --- .../migrations/2023_04_06_032422_user.php | 40 ------------------- .../views/Register/v_register_pang1.blade.php | 2 +- 2 files changed, 1 insertion(+), 41 deletions(-) delete mode 100644 database/migrations/2023_04_06_032422_user.php diff --git a/database/migrations/2023_04_06_032422_user.php b/database/migrations/2023_04_06_032422_user.php deleted file mode 100644 index 5f6191b5..00000000 --- a/database/migrations/2023_04_06_032422_user.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -use Illuminate\Database\Migrations\Migration; -use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\Schema; - -return new class extends Migration -{ - /** - * Run the migrations. - * - * @return void - */ - public function up() - { - Schema::create('users', function (Blueprint $table) { - $table->id(); - $table->timestamps(); - $table->string('id_card', 255) ; - $table->string('firstname'); - $table->string('lastname'); - $table->string('password'); - $table->string('email')->unique(); - $table->tinyInteger('user_type')->default(0); - $table->string('phone_number'); - $table->integer('balance'); - }); - - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - // - } -}; diff --git a/resources/views/Register/v_register_pang1.blade.php b/resources/views/Register/v_register_pang1.blade.php index b48d35af..96e622a6 100644 --- a/resources/views/Register/v_register_pang1.blade.php +++ b/resources/views/Register/v_register_pang1.blade.php @@ -124,7 +124,7 @@ <input type="email" class="form-control" id="validationCustom01"> </div> <div class="col-12 text-end"> - <a class="btn btn-primary" href=http://127.0.0.1:5501/ลงทะเบียนสมาชิกต่อ.html" role="button">ถัดไป</a> + <a class="btn btn-primary" href="http://127.0.0.1:5501/ลงทะเบียนสมาชิกต่อ.html" role="button">ถัดไป</a> </div> </form> </body> -- GitLab