2018-03-17 12:59:53 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use App\Interfaces\Model;
|
|
|
|
|
2018-03-17 12:59:53 +08:00
|
|
|
/**
|
|
|
|
* Class UserAward
|
|
|
|
* @package App\Models
|
|
|
|
*/
|
2018-03-20 09:50:40 +08:00
|
|
|
class UserAward extends Model
|
2018-03-17 12:59:53 +08:00
|
|
|
{
|
|
|
|
public $table = 'user_awards';
|
|
|
|
|
|
|
|
public $fillable = [
|
|
|
|
'user_id',
|
|
|
|
'award_id'
|
|
|
|
];
|
2018-03-17 13:18:03 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function award()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Award::class, 'award_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
|
|
}
|
2018-03-17 12:59:53 +08:00
|
|
|
}
|