Try   HackMD

PV資料|views,migration

tags: 資料 views

views

頁面列表 nodata
FRONT 第一層 第二層 第三層
🐶領送養區 front adopt
-專區首頁 adopt_index.blade
-飼主列表 adopt_list_owner.blade
-收容列表 adopt_list_shelter.blade
-領養內頁 adopt_detail.blade
📜文章專區 front article
-文章首頁 article_index.blade
-文章內頁 article_detail.blade
🛒購物車頁 front cart
-購物車頁01 cart_check_01.blade
-購物車頁02 cart_check_02.blade
-購物車頁03 cart_check_03.blade
❤愛心專區 front donate X
-首頁 donate_index.blade
-捐款內頁01 donate_info_01.blade
-捐款內頁02 donate_check_02.blade
⛳活動專區 front event
-首頁 event_index.blade
-活動列表 event_list.blade
-活動內頁 event_detail.blade
🎁線上購物 front shop
-商城首頁 shop_index.blade
-商品內頁 shop_detail.blade
😀關於 front about about.blade
🏠首頁 front index front_index.blade
AUTH 第一層 第二層 第三層
🔐密碼 auth passwords
confirm.blade
email.blade
reset.blade
🙍‍♂️登入 auth login.blade
🎫註冊 auth register.blade
✔驗證 auth verify.blade
後端管理 admin
模板樣式 layouts app.blade

|首頁|home.blade|
|歡迎頁|welcome.blade
|

migration

users

使用者身分(user,administer)

$table->id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); $table->string('role')->default('user');

捐款頁面(送表單)

php artisan make:migration create_donate_goods_data_table

$table->id(); $table->integer('user_id'); $table->string('order_no'); $table->string('name'); $table->string('phone'); $table->longText('remark')->nullable(); $table->timestamps();

物資頁面(送表單)

php artisan make:migration create_donate_cash_data_table

$table->id(); $table->integer('user_id'); $table->string('order_no'); $table->string('name'); $table->string('county'); $table->string('district'); $table->string('zipcode')->nullable(); $table->string('address'); $table->integer('price'); $table->integer('is_paid')->default(0); $table->timestamps();

Migration名稱

某某頁面(類型)

php artisan make:migration create_name_name_data_table

$table->id(); $table->timestamps();