관리-도구
편집 파일: OrderDetails.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class OrderDetails extends Model { protected $table = 'order_items'; // specify the table name if it doesn't follow Laravel's naming convention protected $fillable = [ 'order_id', 'product_id', 'product_name', 'product_price', 'quantity', 'total_price' ]; public function order() { return $this->belongsTo(Order::class); } public function product() { return $this->belongsTo(Products::class, 'product_id'); } }