-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_ide_helper_models.php
More file actions
274 lines (261 loc) · 11.8 KB
/
_ide_helper_models.php
File metadata and controls
274 lines (261 loc) · 11.8 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
<?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 <barryvdh@gmail.com>
*/
namespace App{
/**
* App\Newsletter
*
* @property int $id
* @property string $email
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Newsletter whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Newsletter whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Newsletter whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Newsletter whereUpdatedAt($value)
*/
class Newsletter extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property int|null $role_id
* @property string $name
* @property string $email
* @property string|null $avatar
* @property string $password
* @property string|null $remember_token
* @property array $settings
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property mixed $locale
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read \TCG\Voyager\Models\Role|null $role
* @property-read \Illuminate\Database\Eloquent\Collection|\TCG\Voyager\Models\Role[] $roles
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereAvatar($value)
* @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 whereSettings($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}
namespace App{
/**
* App\Projects
*
* @property int $id
* @property string $title
* @property string $description
* @property string $url
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property string|null $category
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereCategory($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Projects whereUrl($value)
*/
class Projects extends \Eloquent {}
}
namespace App{
/**
* App\Contact
*
* @property int $id
* @property string $name
* @property string $email
* @property string|null $phone
* @property string $message
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property string|null $answer
* @property int $responded
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereAnswer($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereMessage($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact wherePhone($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereResponded($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Contact whereUpdatedAt($value)
*/
class Contact extends \Eloquent {}
}
namespace App{
/**
* App\Roadmap
*
* @property int $id
* @property string $title
* @property string $description
* @property int $announcement_id
* @property string $acc_date
* @property int $show_month
* @property int $show_day
* @property int $published
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereAccDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereAnnouncementId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap wherePublished($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereShowDay($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereShowMonth($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Roadmap whereUpdatedAt($value)
*/
class Roadmap extends \Eloquent {}
}
namespace App{
/**
* App\CoinMarketCap
*
* @property int $id
* @property string $symbol
* @property float $price
* @property float $volume_24h
* @property float $market_cap
* @property float $percent_change_1h
* @property float $percent_change_24h
* @property float $percent_change_7d
* @property int $rank
* @property int $supply
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereMarketCap($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap wherePercentChange1h($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap wherePercentChange24h($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap wherePercentChange7d($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap wherePrice($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereRank($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereSupply($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereSymbol($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CoinMarketCap whereVolume24h($value)
*/
class CoinMarketCap extends \Eloquent {}
}
namespace App{
/**
* App\MediumArticles
*
* @property int $id
* @property string $title
* @property string $link
* @property string $posted_at
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\MediumArticles whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\MediumArticles whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\MediumArticles whereLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\MediumArticles wherePostedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\MediumArticles whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\MediumArticles whereUpdatedAt($value)
*/
class MediumArticles extends \Eloquent {}
}
namespace App{
/**
* App\FaqGroup
*
* @property int $id
* @property string $title
* @property string $icon
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property int $position
* @property int $published
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FaqEntry[] $faq_entries
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup whereIcon($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup wherePosition($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup wherePublished($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqGroup whereUpdatedAt($value)
*/
class FaqGroup extends \Eloquent {}
}
namespace App{
/**
* App\Announcement
*
* @property int $id
* @property string $pub_date
* @property string $title
* @property string $teaser
* @property string $content
* @property int $published
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\News whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News wherePubDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News wherePublished($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News whereTeaser($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\News whereUpdatedAt($value)
*/
class Announcement extends \Eloquent {}
}
namespace App{
/**
* App\Cron
*
* @property int $id
* @property string $title
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Cron whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Cron whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Cron whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Cron whereUpdatedAt($value)
*/
class Cron extends \Eloquent {}
}
namespace App{
/**
* App\FaqEntry
*
* @property int $id
* @property int $faq_group_id
* @property string $question
* @property string $answer
* @property int $published
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property int $position
* @property-read \App\FaqGroup $faqGroup
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry whereAnswer($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry whereFaqGroupId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry wherePosition($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry wherePublished($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry whereQuestion($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\FaqEntry whereUpdatedAt($value)
*/
class FaqEntry extends \Eloquent {}
}