-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_ide_helper_models.php
More file actions
282 lines (270 loc) · 10.9 KB
/
_ide_helper_models.php
File metadata and controls
282 lines (270 loc) · 10.9 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
// @formatter:off
// phpcs:ignoreFile
/**
* 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 <barryvdh@gmail.com>
*/
namespace App\Models{
/**
*
*
* @method static Builder<static>|Accommodation newModelQuery()
* @method static Builder<static>|Accommodation newQuery()
* @method static Builder<static>|Accommodation onlyTrashed()
* @method static Builder<static>|Accommodation query()
* @method static Builder<static>|Accommodation withTrashed()
* @method static Builder<static>|Accommodation withoutTrashed()
* @mixin Eloquent
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAccommodation {}
}
namespace App\Models{
/**
*
*
* @method static Builder|AccommodationType newModelQuery()
* @method static Builder|AccommodationType newQuery()
* @method static Builder|AccommodationType query()
* @mixin Eloquent
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAccommodationType {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $name
* @property string $iso_code
* @property string $vehicle_code
* @property string $country_code
* @property \Carbon\CarbonImmutable|null $created_at
* @property \Carbon\CarbonImmutable|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|Country newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Country newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Country query()
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCountryCode($value)
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Country whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIsoCode($value)
* @method static \Illuminate\Database\Eloquent\Builder|Country whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Country whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Country whereVehicleCode($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperCountry {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $name
* @property string $iso_code
* @property string $vehicle_code
* @property string $country_code
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @method static Builder|Country newModelQuery()
* @method static Builder|Country newQuery()
* @method static Builder|Country query()
* @method static Builder|Country whereCountryCode($value)
* @method static Builder|Country whereCreatedAt($value)
* @method static Builder|Country whereId($value)
* @method static Builder|Country whereIsoCode($value)
* @method static Builder|Country whereName($value)
* @method static Builder|Country whereUpdatedAt($value)
* @method static Builder|Country whereVehicleCode($value)
* @mixin Eloquent
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperRegion {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $name
* @property string $gender
* @property int $is_hidden
* @property \Carbon\CarbonImmutable|null $created_at
* @property \Carbon\CarbonImmutable|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|Salutation newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Salutation newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Salutation query()
* @method static \Illuminate\Database\Eloquent\Builder|Salutation whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Salutation whereGender($value)
* @method static \Illuminate\Database\Eloquent\Builder|Salutation whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Salutation whereIsHidden($value)
* @method static \Illuminate\Database\Eloquent\Builder|Salutation whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Salutation whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperSalutation {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $parent_type
* @property string $parent_id
* @property array $data
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read string $hid
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData whereData($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData whereParentId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData whereParentType($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|TempData whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperTempData {}
}
namespace App\Models{
/**
*
*
* @property string $id
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property array|null $data
* @property string $last_name
* @property string $first_name
* @property string $company_house_name
* @property string|null $address
* @property string $zip
* @property string $city
* @property int|null $country_id
* @property int|null $salutation_id
* @property int|null $title_id
* @property string|null $website
* @property string|null $subdomain
* @property string|null $email
* @property int|null $otp
* @property string|null $email_verified_at
* @property string|null $setuped
* @property int $is_suspended
* @property string|null $note
* @property-read Collection<int, Domain> $domains
* @property-read int|null $domains_count
* @property-read string $full_name
* @property-read string $initials
* @property-read string $reverse_full_name
* @method static TenantCollection<int, static> all($columns = ['*'])
* @method static Builder<static>|Tenant findSimilarSlugs(string $attribute, array $config, string $slug)
* @method static TenantCollection<int, static> get($columns = ['*'])
* @method static Builder<static>|Tenant newModelQuery()
* @method static Builder<static>|Tenant newQuery()
* @method static Builder<static>|Tenant query()
* @method static Builder<static>|Tenant whereAddress($value)
* @method static Builder<static>|Tenant whereCity($value)
* @method static Builder<static>|Tenant whereCompanyHouseName($value)
* @method static Builder<static>|Tenant whereCountryId($value)
* @method static Builder<static>|Tenant whereCreatedAt($value)
* @method static Builder<static>|Tenant whereData($value)
* @method static Builder<static>|Tenant whereEmail($value)
* @method static Builder<static>|Tenant whereEmailVerifiedAt($value)
* @method static Builder<static>|Tenant whereFirstName($value)
* @method static Builder<static>|Tenant whereId($value)
* @method static Builder<static>|Tenant whereIsSuspended($value)
* @method static Builder<static>|Tenant whereLastName($value)
* @method static Builder<static>|Tenant whereNote($value)
* @method static Builder<static>|Tenant whereOtp($value)
* @method static Builder<static>|Tenant whereSalutationId($value)
* @method static Builder<static>|Tenant whereSetuped($value)
* @method static Builder<static>|Tenant whereSubdomain($value)
* @method static Builder<static>|Tenant whereTitleId($value)
* @method static Builder<static>|Tenant whereUpdatedAt($value)
* @method static Builder<static>|Tenant whereWebsite($value)
* @method static Builder<static>|Tenant whereZip($value)
* @method static Builder<static>|Tenant withUniqueSlugConstraints(Model $model, string $attribute, array $config, string $slug)
* @mixin Eloquent
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperTenant {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $name
* @property string $correspondence_salutation_male
* @property string $correspondence_salutation_female
* @property string $correspondence_salutation_other
* @property \Carbon\CarbonImmutable|null $created_at
* @property \Carbon\CarbonImmutable|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|Title newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Title newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Title query()
* @method static \Illuminate\Database\Eloquent\Builder|Title whereCorrespondenceSalutationFemale($value)
* @method static \Illuminate\Database\Eloquent\Builder|Title whereCorrespondenceSalutationMale($value)
* @method static \Illuminate\Database\Eloquent\Builder|Title whereCorrespondenceSalutationOther($value)
* @method static \Illuminate\Database\Eloquent\Builder|Title whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Title whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Title whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Title whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperTitle {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $name
* @property string $email
* @property Carbon|null $email_verified_at
* @property string $password
* @property string|null $remember_token
* @property int|null $current_team_id
* @property string|null $profile_photo_path
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read DatabaseNotificationCollection<int, DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @method static UserFactory factory($count = null, $state = [])
* @method static Builder<static>|User newModelQuery()
* @method static Builder<static>|User newQuery()
* @method static Builder<static>|User query()
* @method static Builder<static>|User whereCreatedAt($value)
* @method static Builder<static>|User whereCurrentTeamId($value)
* @method static Builder<static>|User whereEmail($value)
* @method static Builder<static>|User whereEmailVerifiedAt($value)
* @method static Builder<static>|User whereId($value)
* @method static Builder<static>|User whereName($value)
* @method static Builder<static>|User wherePassword($value)
* @method static Builder<static>|User whereProfilePhotoPath($value)
* @method static Builder<static>|User whereRememberToken($value)
* @method static Builder<static>|User whereUpdatedAt($value)
* @property-read string $full_name
* @property-read string $initials
* @property-read string $reverse_full_name
* @mixin Eloquent
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperUser {}
}