選擇後會自動跳轉頁面
1. .env 2. app\ 2-1 app\Http\ 2-1-1 app\Http\Controllers\Auth\RegisterController.php 2-2 app\Admin\ 2-2-1 app\Admin\Controllers\UserController.php 2-2-2 app\Admin\Controllers\ProductController.php 2-2-3 app\Admin\routes.php 2-3 app\Http\Controllers\ 2-3-1 app\Http\Controllers\ProductController.php 2-4 app\User.php 2-5 app\Product.php 2-6 app\Cart.php 3. config\ 3-1 config\app.php 3-2 config\admin.php 4. database\migrations\ 4-1 database\migrations\2014_10_12_000000_create_users_table.php 4-2 database\migrations\2019_06_21_144827_change_users_table.php 4-3 database\migrations\2019_06_22_083243_create_products_table.php 4-4 database\migrations\2019_06_22_141111_create_carts_table.php 5. resources 5-1 resources\views\ 5-1-1 resources\views\welcome.blade.php 5-1-2 resources\views\auth\register.blade.php 5-1-3 resources\views\layouts\app.blade.php 5-1-4 resources\views\layouts\nav.blade.php 5-1-5 resources\views\product\index.blade.php 5-1-6 resources\views\product\show.blade.php 5-2 resources\lang\ 5-2-1 resources\lang\zh-TW.json 6. routes 6-1 routes\web.php
2-6
app\Cart.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Cart extends Model
{
public function product()
{
return $this->belongsTo('App\Product');
}
public function user()
{
return $this->belongsTo('App\User');
}
}
選擇後會自動跳轉頁面
1. .env 2. app\ 2-1 app\Http\ 2-1-1 app\Http\Controllers\Auth\RegisterController.php 2-2 app\Admin\ 2-2-1 app\Admin\Controllers\UserController.php 2-2-2 app\Admin\Controllers\ProductController.php 2-2-3 app\Admin\routes.php 2-3 app\Http\Controllers\ 2-3-1 app\Http\Controllers\ProductController.php 2-4 app\User.php 2-5 app\Product.php 2-6 app\Cart.php 3. config\ 3-1 config\app.php 3-2 config\admin.php 4. database\migrations\ 4-1 database\migrations\2014_10_12_000000_create_users_table.php 4-2 database\migrations\2019_06_21_144827_change_users_table.php 4-3 database\migrations\2019_06_22_083243_create_products_table.php 4-4 database\migrations\2019_06_22_141111_create_carts_table.php 5. resources 5-1 resources\views\ 5-1-1 resources\views\welcome.blade.php 5-1-2 resources\views\auth\register.blade.php 5-1-3 resources\views\layouts\app.blade.php 5-1-4 resources\views\layouts\nav.blade.php 5-1-5 resources\views\product\index.blade.php 5-1-6 resources\views\product\show.blade.php 5-2 resources\lang\ 5-2-1 resources\lang\zh-TW.json 6. routes 6-1 routes\web.php