-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
469 lines (453 loc) · 25.5 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
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
<?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{
/**
* App\Models\Advisor
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property mixed $password
* @property array $field_of_interests
* @property string $room_no
* @property int $slots
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read mixed $available_slots
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectAdvisorInvite> $invites
* @property-read int|null $invites_count
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectAdvisorInvite> $pendingProjectInvites
* @property-read int|null $pending_project_invites_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Project> $projects
* @property-read int|null $projects_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @property-read int|null $tokens_count
* @method static \Database\Factories\AdvisorFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Advisor newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Advisor newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Advisor query()
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereFieldOfInterests($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereRoomNo($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereSlots($value)
* @method static \Illuminate\Database\Eloquent\Builder|Advisor whereUpdatedAt($value)
*/
class Advisor extends \Eloquent implements \Filament\Models\Contracts\FilamentUser {}
}
namespace App\Models{
/**
* App\Models\EvaluationEvent
*
* @property int $id
* @property string $name
* @property \Illuminate\Support\Carbon $start_datetime
* @property int $per_project_duration
* @property int $total_marks
* @property bool $is_final_evaluation
* @property bool $shuffle_evaluation_panels
* @property bool $active
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectEvaluation> $evaluations
* @property-read int|null $evaluations_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Project> $projects
* @property-read int|null $projects_count
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent query()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereActive($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereIsFinalEvaluation($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent wherePerProjectDuration($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereShuffleEvaluationPanels($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereStartDatetime($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereTotalMarks($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEvent whereUpdatedAt($value)
*/
class EvaluationEvent extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\EvaluationEventProject
*
* @property int $evaluation_event_id
* @property int $project_id
* @property \Illuminate\Support\Carbon $evaluation_date
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEventProject newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEventProject newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEventProject query()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEventProject whereEvaluationDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEventProject whereEvaluationEventId($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationEventProject whereProjectId($value)
*/
class EvaluationEventProject extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\EvaluationPanel
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property mixed $password
* @property string|null $remember_token
* @property string $description
* @property bool $is_active
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectEvaluation> $projectEvaluations
* @property-read int|null $project_evaluations_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Project> $projects
* @property-read int|null $projects_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @property-read int|null $tokens_count
* @method static \Database\Factories\EvaluationPanelFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel query()
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereIsActive($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|EvaluationPanel whereUpdatedAt($value)
*/
class EvaluationPanel extends \Eloquent implements \Filament\Models\Contracts\FilamentUser {}
}
namespace App\Models{
/**
* App\Models\Project
*
* @property int $id
* @property string $name
* @property string|null $description
* @property \App\Enums\ProjectStatus $status
* @property \App\Enums\ProjectApprovalStatus $approval_status
* @property \App\Enums\ProjectTerm $term
* @property int|null $advisor_id
* @property int|null $evaluation_panel_id
* @property int $is_archived
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property int $member_limit
* @property-read \App\Models\Advisor|null $advisor
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectAdvisorInvite> $advisorInvites
* @property-read int|null $advisor_invites_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\EvaluationEvent> $evaluationEvents
* @property-read int|null $evaluation_events_count
* @property-read \App\Models\EvaluationPanel|null $evaluationPanel
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectEvaluation> $evaluations
* @property-read int|null $evaluations_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectFile> $files
* @property-read int|null $files_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectMemberInvite> $memberInvites
* @property-read int|null $member_invites_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectAdvisorInvite> $pendingAdvisorInvites
* @property-read int|null $pending_advisor_invites_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectMemberInvite> $pendingMemberInvites
* @property-read int|null $pending_member_invites_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectQuery> $queries
* @property-read int|null $queries_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Student> $students
* @property-read int|null $students_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectTask> $tasks
* @property-read int|null $tasks_count
* @method static \Database\Factories\ProjectFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Project newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Project newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Project query()
* @method static \Illuminate\Database\Eloquent\Builder|Project whereAdvisorId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereApprovalStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereEvaluationPanelId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereIsArchived($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereMemberLimit($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereTerm($value)
* @method static \Illuminate\Database\Eloquent\Builder|Project whereUpdatedAt($value)
*/
class Project extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\ProjectAdvisorInvite
*
* @property int $id
* @property string $message
* @property int $project_id
* @property int $advisor_id
* @property int $sent_by
* @property \App\Enums\ProjectInviteStatus $status
* @property string $expires_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\Advisor $advisor
* @property-read \App\Models\Project $project
* @property-read \App\Models\Student $sender
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereAdvisorId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereExpiresAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereMessage($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereSentBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectAdvisorInvite whereUpdatedAt($value)
*/
class ProjectAdvisorInvite extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\ProjectEvaluation
*
* @property int $id
* @property int $evaluation_event_id
* @property int $project_id
* @property int $student_id
* @property int $evaluation_panel_id
* @property string $term e.g. FYP1, FYP2
* @property int|null $marks
* @property string $comments e.g. can be improved
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\EvaluationEvent $evaluation_event
* @property-read \App\Models\EvaluationPanel $evaluation_panel
* @property-read \App\Models\Project $project
* @property-read \App\Models\Student $student
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereComments($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereEvaluationEventId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereEvaluationPanelId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereMarks($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereStudentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereTerm($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectEvaluation whereUpdatedAt($value)
*/
class ProjectEvaluation extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\ProjectFile
*
* @property int $id
* @property string $name
* @property string $storage_path
* @property string $storage_disk
* @property int $project_id
* @property int|null $student_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\Project $project
* @property-read \App\Models\Student|null $student
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereStorageDisk($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereStoragePath($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereStudentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereUpdatedAt($value)
*/
class ProjectFile extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\ProjectMemberInvite
*
* @property int $id
* @property string $message
* @property int $project_id
* @property int $student_id
* @property int $sent_by
* @property \App\Enums\ProjectInviteStatus $status
* @property string $expires_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\Project $project
* @property-read \App\Models\Student $sender
* @property-read \App\Models\Student $student
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereExpiresAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereMessage($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereSentBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereStudentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectMemberInvite whereUpdatedAt($value)
*/
class ProjectMemberInvite extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\ProjectQuery
*
* @property int $id
* @property string $query
* @property int $project_id
* @property int|null $student_id
* @property string|null $answer
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\Project $project
* @property-read \App\Models\Student|null $student
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereAnswer($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereQuery($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereStudentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectQuery whereUpdatedAt($value)
*/
class ProjectQuery extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\ProjectTask
*
* @property int $id
* @property string $name
* @property string|null $description
* @property \App\Enums\ProjectTaskStatus $status
* @property int $project_id
* @property string|null $remarks
* @property \Illuminate\Support\Carbon|null $due_date
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\Project $project
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereDueDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereRemarks($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectTask whereUpdatedAt($value)
*/
class ProjectTask extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\Student
*
* @property int $id
* @property string $registration_no
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property mixed $password
* @property string|null $remember_token
* @property int|null $project_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectAdvisorInvite> $advisorInvites
* @property-read int|null $advisor_invites_count
* @property-read mixed $name_with_registration
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ProjectMemberInvite> $memberInvites
* @property-read int|null $member_invites_count
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read \App\Models\Project|null $project
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @property-read int|null $tokens_count
* @method static \Database\Factories\StudentFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Student newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Student newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Student query()
* @method static \Illuminate\Database\Eloquent\Builder|Student whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereRegistrationNo($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|Student whereUpdatedAt($value)
*/
class Student extends \Eloquent implements \Filament\Models\Contracts\FilamentUser {}
}
namespace App\Models{
/**
* This is the class for Staff Users i.e. Coordinator, Moderators, etc.
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property mixed $password
* @property string $role
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @property-read int|null $tokens_count
* @method static \Database\Factories\UserFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User query()
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereRole($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
*/
class User extends \Eloquent implements \Filament\Models\Contracts\FilamentUser {}
}