blob: 23bc528c58f4b21dc5dd13ea5a17dc1974321b93 (
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
|
<?php
namespace Engelsystem\Models\User;
/**
* @property string $dect
* @property string $email
* @property string $mobile
*
* @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\User\Contact[] whereDect($value)
* @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\User\Contact[] whereEmail($value)
* @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\User\Contact[] whereMobile($value)
*/
class Contact extends HasUserModel
{
/** @var string The table associated with the model */
protected $table = 'users_contact';
/** The attributes that are mass assignable */
protected $fillable = [
'user_id',
'dect',
'email',
'mobile',
];
}
|