ShopCar.php 335 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ShopCar extends Model
  5. {
  6. protected $table='shop_car';
  7. protected $fillable=['user_id','goods_id','price','num','amount','sku_id','size','type','is_true'];
  8. public function goods(){
  9. return $this->belongsTo(Goods::class,'goods_id');
  10. }
  11. }