前提・実現したいこと
PHP(Laravel)でECサイトを制作しております。
現在実装している内容は以下です。
- 商品一覧ページ
- カート機能
- 購入機能
- 自動メール送信機能
- 決済機能
今回実現させたい事として商品一覧ページで数量指定した後にカートページで指定された個数を表示させて決済する。
そこから商品テーブルから購入された分の個数を減らしていくコードを実装したいと思っています。
発生している問題・エラーメッセージ
特にエラーが出ているわけではないのですが、どのように実装すればいいのか…皆目検討がついていない状態です…
該当のソースコード
public function showCart() { $user_id = Auth::id(); $data['my_carts'] = $this->where('user_id', $user_id)->get(); // 合計金額のと個数を表示 $data['count'] = 0; $data['sum'] = 0; foreach($data['my_carts'] as $my_cart){ $data['count'] ++; $data['sum'] += $my_cart->item->price; $data['sell_count'] = $this->where('item_id', $my_cart->item0>id)->count(); } return $data; }
###マイグレーションファイル
items
1use Illuminate\Database\Migrations\Migration; 2use Illuminate\Database\Schema\Blueprint; 3use Illuminate\Support\Facades\Schema; 4 5class CreateItemsTable extends Migration 6{ 7 /** 8 * Run the migrations. 9 * 10 * @return void 11 */ 12 public function up() 13 { 14 Schema::create('items', function (Blueprint $table) { 15 $table->bigIncrements('id'); 16 $table->string('name', 50)->nullable(false); 17 $table->integer('price')->nullable(false); 18 $table->text('introduction')->nullable(false); 19 $table->integer('stock_amount')->nullable(false); 20 $table->integer('buy_amount')->nullable(false); 21 $table->timestamps(); 22 }); 23 } 24 25 /** 26 * Reverse the migrations. 27 * 28 * @return void 29 */ 30 public function down() 31 { 32 Schema::dropIfExists('items'); 33 }
carts
1use Illuminate\Database\Migrations\Migration; 2use Illuminate\Database\Schema\Blueprint; 3use Illuminate\Support\Facades\Schema; 4 5class CreateCartsTable extends Migration 6{ 7 /** 8 * Run the migrations. 9 * 10 * @return void 11 */ 12 public function up() 13 { 14 Schema::create('carts', function (Blueprint $table) { 15 $table->bigIncrements('id'); 16 $table->integer('item_id'); 17 $table->integer('user_id'); 18 $table->timestamps(); 19 }); 20 } 21 22 /** 23 * Reverse the migrations. 24 * 25 * @return void 26 */ 27 public function down() 28 { 29 Schema::dropIfExists('carts'); 30 }
items追加分
1use Illuminate\Database\Migrations\Migration; 2use Illuminate\Database\Schema\Blueprint; 3use Illuminate\Support\Facades\Schema; 4 5class AddImgpathToItemsTable extends Migration 6{ 7 /** 8 * Run the migrations. 9 * 10 * @return void 11 */ 12 public function up() 13 { 14 Schema::table('items', function (Blueprint $table) { 15 // 16 $table->string('imgpath', '200')->nullable(false); 17 }); 18 } 19 20 /** 21 * Reverse the migrations. 22 * 23 * @return void 24 */ 25 public function down() 26 { 27 Schema::table('items', function (Blueprint $table) { 28 // 29 }); 30 }
items追加分
1use Illuminate\Database\Migrations\Migration; 2use Illuminate\Database\Schema\Blueprint; 3use Illuminate\Support\Facades\Schema; 4 5class AddStockToItemsTable extends Migration 6{ 7 /** 8 * Run the migrations. 9 * 10 * @return void 11 */ 12 public function up() 13 { 14 Schema::table('items', function (Blueprint $table) { 15 // 16 $table->integer('stock')->nullable(false); 17 }); 18 } 19 20 /** 21 * Reverse the migrations. 22 * 23 * @return void 24 */ 25 public function down() 26 { 27 Schema::table('items', function (Blueprint $table) { 28 // 29 }); 30 }
試したこと
where句を用いて情報を取得して、それをcount関数で数えてあげればいいのかなと単純な考えで思考をしてみました。
補足情報(FW/ツールのバージョンなど)
PhP 7.3.11