You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

27 lines
748 B
PHP

<?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',
];
}