芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/lavishbdlifestyle.com/app/Models/User.php
notify(new EmailVerificationNotification()); } /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', 'address', 'city', 'postal_code', 'phone', 'country', 'provider_id', 'email_verified_at', 'verification_code' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; public function wishlists() { return $this->hasMany(Wishlist::class); } public function customer() { return $this->hasOne(Customer::class); } public function affiliate_user() { return $this->hasOne(AffiliateUser::class); } public function affiliate_withdraw_request() { return $this->hasMany(AffiliateWithdrawRequest::class); } public function products() { return $this->hasMany(Product::class); } public function shop() { return $this->hasOne(Shop::class); } public function seller() { return $this->hasOne(Seller::class); } public function staff() { return $this->hasOne(Staff::class); } public function orders() { return $this->hasMany(Order::class); } public function seller_orders() { return $this->hasMany(Order::class, "seller_id"); } public function seller_sales() { return $this->hasMany(OrderDetail::class, "seller_id"); } public function wallets() { return $this->hasMany(Wallet::class)->orderBy('created_at', 'desc'); } public function club_point() { return $this->hasOne(ClubPoint::class); } public function customer_package() { return $this->belongsTo(CustomerPackage::class); } public function customer_package_payments() { return $this->hasMany(CustomerPackagePayment::class); } public function customer_products() { return $this->hasMany(CustomerProduct::class); } public function seller_package_payments() { return $this->hasMany(SellerPackagePayment::class); } public function carts() { return $this->hasMany(Cart::class); } public function reviews() { return $this->hasMany(Review::class); } public function addresses() { return $this->hasMany(Address::class); } public function affiliate_log() { return $this->hasMany(AffiliateLog::class); } public function product_bids() { return $this->hasMany(AuctionProductBid::class); } public function product_queries(){ return $this->hasMany(ProductQuery::class,'customer_id'); } public function uploads(){ return $this->hasMany(Upload::class); } public function userCoupon(){ return $this->hasOne(UserCoupon::class); } }