ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/public_html/3-idiots/app/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/public_html/3-idiots/app/User.php |
<?php namespace App; use App\Model\Order; use App\Model\ShippingAddress; use App\Model\Wishlist; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Passport\HasApiTokens; class User extends Authenticatable { use Notifiable, HasApiTokens; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'f_name', 'l_name', 'name', 'email', 'password', 'phone', 'image', 'login_medium','is_active','social_id','is_phone_verified','temporary_token' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', 'is_active' => 'integer', 'is_phone_verified'=>'integer', 'is_email_verified' => 'integer', 'wallet_balance'=>'float', 'loyalty_point'=>'float' ]; public function wish_list() { return $this->hasMany(Wishlist::class, 'customer_id'); } public function orders() { return $this->hasMany(Order::class, 'customer_id'); } public function customer() { return $this->belongsTo(User::class, 'customer_id'); } public function shipping() { return $this->belongsTo(ShippingAddress::class, 'shipping_address'); } }