2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
2017-06-11 09:10:31 +08:00
|
|
|
namespace App\Models;
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
2017-06-11 09:10:31 +08:00
|
|
|
use Zizaco\Entrust\Traits\EntrustUserTrait;
|
2017-06-22 00:40:08 +08:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2017-06-22 18:23:59 +08:00
|
|
|
use Illuminate\Contracts\Auth\CanResetPassword;
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* App\User
|
|
|
|
*
|
2017-07-04 14:05:37 +08:00
|
|
|
* @property integer
|
|
|
|
* $id
|
|
|
|
* @property string
|
|
|
|
* $name
|
|
|
|
* @property string
|
|
|
|
* $email
|
|
|
|
* @property string
|
|
|
|
* $password
|
|
|
|
* @property string
|
|
|
|
* $remember_token
|
|
|
|
* @property \Carbon\Carbon
|
|
|
|
* $created_at
|
|
|
|
* @property \Carbon\Carbon
|
|
|
|
* $updated_at
|
|
|
|
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[]
|
|
|
|
* $notifications
|
|
|
|
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[]
|
|
|
|
* $unreadNotifications
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* whereName($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* whereEmail($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* wherePassword($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* whereRememberToken($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\App\Models\User
|
|
|
|
* whereUpdatedAt($value)
|
2017-06-09 02:28:26 +08:00
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
|
|
|
class User extends Authenticatable
|
|
|
|
{
|
|
|
|
use Notifiable;
|
2017-06-11 09:10:31 +08:00
|
|
|
use EntrustUserTrait;
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-07-04 14:05:37 +08:00
|
|
|
protected $fillable
|
|
|
|
= [
|
|
|
|
'name',
|
|
|
|
'email',
|
|
|
|
'password',
|
2017-08-12 00:50:14 +08:00
|
|
|
'airline_id',
|
|
|
|
'home_airport_id',
|
|
|
|
'curr_airport_id',
|
|
|
|
'rank_id'
|
2017-07-04 14:05:37 +08:00
|
|
|
];
|
2017-06-09 02:28:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be hidden for arrays.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-07-04 14:05:37 +08:00
|
|
|
protected $hidden
|
|
|
|
= [
|
|
|
|
'password',
|
|
|
|
'remember_token',
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $casts
|
|
|
|
= [
|
|
|
|
'flights' => 'integer',
|
|
|
|
'flight_hours' => 'integer',
|
|
|
|
'balance' => 'double',
|
|
|
|
'timezone' => 'integer',
|
|
|
|
];
|
2017-06-29 08:56:10 +08:00
|
|
|
|
2017-07-03 10:25:48 +08:00
|
|
|
public function pilot_id()
|
|
|
|
{
|
2017-07-04 14:05:37 +08:00
|
|
|
return $this->airline->code.str_pad($this->id, 3, '0', STR_PAD_LEFT);
|
2017-07-03 10:25:48 +08:00
|
|
|
}
|
|
|
|
|
2017-06-29 08:56:10 +08:00
|
|
|
/**
|
|
|
|
* Foreign Keys
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function airline()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Airline', 'airline_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function home_airport()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Airport', 'home_airport_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function current_airport()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Airport', 'curr_airport_id');
|
|
|
|
}
|
|
|
|
|
2017-08-04 10:02:02 +08:00
|
|
|
public function flights()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Models\UserFlight', 'user_id');
|
|
|
|
}
|
|
|
|
|
2017-06-30 04:50:16 +08:00
|
|
|
public function pireps()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Models\Pirep', 'user_id');
|
|
|
|
}
|
|
|
|
|
2017-06-29 08:56:10 +08:00
|
|
|
public function rank()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Rank', 'rank_id');
|
|
|
|
}
|
2017-06-09 02:28:26 +08:00
|
|
|
}
|