summaryrefslogtreecommitdiff
path: root/src/Models/User/HasUserModel.php
blob: 6d1323de103d8e790910aa0aefb0259bd0aa620c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

namespace Engelsystem\Models\User;

use Engelsystem\Models\BaseModel;
use Illuminate\Database\Eloquent\Relations\BelongsTo;

/**
 * @property integer                                                               $user_id
 *
 * @property-read \Illuminate\Database\Query\Builder|\Engelsystem\Models\User\User $user
 *
 * @method static \Illuminate\Database\Query\Builder|static whereUserId($value)
 */
abstract class HasUserModel extends BaseModel
{
    /** @var string The primary key for the model */
    protected $primaryKey = 'user_id';

    /** The attributes that are mass assignable */
    protected $fillable = [
        'user_id',
    ];

    /** The relationships that should be touched on save */
    protected $touches = ['user'];

    /**
     * @return BelongsTo
     */
    public function user()
    {
        return $this->belongsTo(User::class);
    }
}