This repository has been archived by the owner on Oct 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ide_helper_models.php
161 lines (152 loc) · 6.42 KB
/
_ide_helper_models.php
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
/**
* A helper file for your Eloquent Models
* Copy the phpDocs from this file to the correct Model,
* And remove them from this file, to prevent double declarations.
*
* @author Barry vd. Heuvel <[email protected]>
*/
namespace App{
/**
* App\Category
*
* @property int $id
* @property string $name
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Phone[] $phones
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereUpdatedAt($value)
*/
class Category extends \Eloquent {}
}
namespace App{
/**
* App\Contact
*
* @property int $id
* @property string $fname
* @property string $lname
* @property int $user_id
* @property int $group_id
* @property string $path
* @property string $company
* @property string $address
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Email[] $emails
* @property-read \App\Group $group
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Phone[] $phones
* @property-read \App\User $user
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereAddress($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereCompany($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereFname($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereGroupId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereLname($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact wherePath($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereUserId($value)
*/
class Contact extends \Eloquent {}
}
namespace App{
/**
* App\Email
*
* @property int $id
* @property string $email
* @property int $contact_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \App\Contact $contact
* @method static \Illuminate\Database\Eloquent\Builder|\App\Email whereContactId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Email whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Email whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Email whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Email whereUpdatedAt($value)
*/
class Email extends \Eloquent {}
}
namespace App{
/**
* App\Group
*
* @property int $id
* @property string $name
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Contact[] $contacts
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereUpdatedAt($value)
*/
class Group extends \Eloquent {}
}
namespace App{
/**
* App\Phone
*
* @property int $id
* @property string $phone
* @property int $contact_id
* @property int $category_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \App\Category $category
* @property-read \App\Contact $contact
* @method static \Illuminate\Database\Eloquent\Builder|\App\Phone whereCategoryId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Phone whereContactId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Phone whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Phone whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Phone wherePhone($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Phone whereUpdatedAt($value)
*/
class Phone extends \Eloquent {}
}
namespace App{
/**
* App\Role
*
* @property int $id
* @property string $name
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\User[] $users
* @method static \Illuminate\Database\Eloquent\Builder|\App\Role whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Role whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Role whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Role whereUpdatedAt($value)
*/
class Role extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $name
* @property int $role_id
* @property string $email
* @property string $password
* @property string|null $remember_token
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Contact[] $contacts
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read \App\Role $role
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereRoleId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}