選擇後會自動跳轉頁面
1. VSCode設定 2. config 2-1 config\app.php 2-2 config\admin.php 3. .env 4. routes\web.php 5. resources\views\ 5-1 resources\views\layouts\app.blade.php 5-2 resources\views\layouts\nav.blade.php 5-3 resources\views\home.blade.php 5-4 resources\views\welcome.blade.php 5-5 resources\views\auth\register.blade.php 5-6 resources\views\product\index.blade.php 5-7 resources\views\product\show.blade.php 5-8 resources\views\product\add2cart.blade.php 5-9 resources\views\cart\index.blade.php 5-10 resources\lang\zh-TW.json 6. database\migrations 6-1 database\migrations\2019_08_14_101716_change_users_table.php 6-2 database\migrations\2019_08_14_133611_create_products_table.php 6-3 database\migrations\2019_08_15_105956_create_carts_table.php 6-4 database\migrations\2019_08_16_145249_create_orders_table.php 6-5 database\migrations\2019_08_16_145328_create_order_items_table.php 7. app\ 7-1 app\Http\Controllers\Auth\RegisterController.php 7-2 app\Http\Controllers\ProductController.php 7-3 app\Http\Controllers\CartController.php 7-4 app\Http\Controllers\OrderController.php 7-5 app\Product.php 7-6 app\User.php 7-7 app\Cart.php 7-8 app\Order.php 7-9 app\OrderItem.php 8. app\Admin\ 8-1 app\Admin\routes.php 8-2 app\Admin\Controllers\UserController.php 8-3 app\Admin\Controllers\ProductController.php
7-5
app\Product.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Storage;
class Product extends Model
{
public function getImageUrlAttribute()
{
return Storage::disk('public')->url($this->attributes['image']);
}
public function carts()
{
return $this->hasMany('App\Cart');
}
}
選擇後會自動跳轉頁面
1. VSCode設定 2. config 2-1 config\app.php 2-2 config\admin.php 3. .env 4. routes\web.php 5. resources\views\ 5-1 resources\views\layouts\app.blade.php 5-2 resources\views\layouts\nav.blade.php 5-3 resources\views\home.blade.php 5-4 resources\views\welcome.blade.php 5-5 resources\views\auth\register.blade.php 5-6 resources\views\product\index.blade.php 5-7 resources\views\product\show.blade.php 5-8 resources\views\product\add2cart.blade.php 5-9 resources\views\cart\index.blade.php 5-10 resources\lang\zh-TW.json 6. database\migrations 6-1 database\migrations\2019_08_14_101716_change_users_table.php 6-2 database\migrations\2019_08_14_133611_create_products_table.php 6-3 database\migrations\2019_08_15_105956_create_carts_table.php 6-4 database\migrations\2019_08_16_145249_create_orders_table.php 6-5 database\migrations\2019_08_16_145328_create_order_items_table.php 7. app\ 7-1 app\Http\Controllers\Auth\RegisterController.php 7-2 app\Http\Controllers\ProductController.php 7-3 app\Http\Controllers\CartController.php 7-4 app\Http\Controllers\OrderController.php 7-5 app\Product.php 7-6 app\User.php 7-7 app\Cart.php 7-8 app\Order.php 7-9 app\OrderItem.php 8. app\Admin\ 8-1 app\Admin\routes.php 8-2 app\Admin\Controllers\UserController.php 8-3 app\Admin\Controllers\ProductController.php