芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/lavishbdlifestyle.com/app/Models/Cart.php
belongsTo(User::class); } public function product() { return $this->belongsTo(Product::class); } public function address() { return $this->belongsTo(Address::class); } public function scopeActive($query) { return $query->where('status', 1); } }