forked from canyongbs/advisingapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ide_helper_models.php
5187 lines (5048 loc) · 300 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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
<COPYRIGHT>
Copyright © 2016-2024, Canyon GBS LLC. All rights reserved.
Advising App™ is licensed under the Elastic License 2.0. For more details,
see https://github.com/canyongbs/advisingapp/blob/main/LICENSE.
Notice:
- You may not provide the software to third parties as a hosted or managed
service, where the service provides users with access to any substantial set of
the features or functionality of the software.
- You may not move, change, disable, or circumvent the license key functionality
in the software, and you may not remove or obscure any functionality in the
software that is protected by the license key.
- You may not alter, remove, or obscure any licensing, copyright, or other notices
of the licensor in the software. Any use of the licensor’s trademarks is subject
to applicable law.
- Canyon GBS LLC respects the intellectual property rights of others and expects the
same in return. Canyon GBS™ and Advising App™ are registered trademarks of
Canyon GBS LLC, and we are committed to enforcing and protecting our trademarks
vigorously.
- The software solution, including services, infrastructure, and code, is offered as a
Software as a Service (SaaS) by Canyon GBS LLC.
- Use of this software implies agreement to the license terms and conditions as stated
in the Elastic License 2.0.
For more information or inquiries please visit our website at
https://www.canyongbs.com or contact us via email at [email protected].
</COPYRIGHT>
*/
// @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 <[email protected]>
*/
namespace App\Models{
/**
* App\Models\Export
*
* @property string $id
* @property int|null $completed_at
* @property string $file_disk
* @property string|null $file_name
* @property string $exporter
* @property int $processed_rows
* @property int $total_rows
* @property int $successful_rows
* @property string $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $user
* @method static \Illuminate\Database\Eloquent\Builder|Export newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Export newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Export onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Export query()
* @method static \Illuminate\Database\Eloquent\Builder|Export whereCompletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereExporter($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereFileDisk($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereFileName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereProcessedRows($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereSuccessfulRows($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereTotalRows($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Export withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Export withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperExport {}
}
namespace App\Models{
/**
* App\Models\FailedImportRow
*
* @property string $id
* @property array $data
* @property string $import_id
* @property string|null $validation_error
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \App\Models\Import $import
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow query()
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereData($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereImportId($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow whereValidationError($value)
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|FailedImportRow withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperFailedImportRow {}
}
namespace App\Models{
/**
* App\Models\HealthCheckResultHistoryItem
*
* @property int $id
* @property string $check_name
* @property string $check_label
* @property string $status
* @property string|null $notification_message
* @property string|null $short_summary
* @property array $meta
* @property string $ended_at
* @property string $batch
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem query()
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereBatch($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereCheckLabel($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereCheckName($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereEndedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereMeta($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereNotificationMessage($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereShortSummary($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|HealthCheckResultHistoryItem whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperHealthCheckResultHistoryItem {}
}
namespace App\Models{
/**
* App\Models\Import
*
* @property string $id
* @property int|null $completed_at
* @property string $file_name
* @property string $file_path
* @property string $importer
* @property int $processed_rows
* @property int $total_rows
* @property int $successful_rows
* @property string $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\FailedImportRow> $failedRows
* @property-read int|null $failed_rows_count
* @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $user
* @method static \Illuminate\Database\Eloquent\Builder|Import newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Import newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Import onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Import query()
* @method static \Illuminate\Database\Eloquent\Builder|Import whereCompletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereFileName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereFilePath($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereImporter($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereProcessedRows($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereSuccessfulRows($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereTotalRows($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Import withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Import withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperImport {}
}
namespace App\Models{
/**
* App\Models\LandlordSettingsProperty
*
* @property string $id
* @property string $group
* @property string $name
* @property bool $locked
* @property mixed $payload
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty query()
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty whereGroup($value)
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty whereLocked($value)
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty wherePayload($value)
* @method static \Illuminate\Database\Eloquent\Builder|LandlordSettingsProperty whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperLandlordSettingsProperty {}
}
namespace App\Models{
/**
* App\Models\NotificationSetting
*
* @property string $id
* @property string $name
* @property string|null $primary_color
* @property string|null $description
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property string|null $from_name
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Division\Models\Division> $divisions
* @property-read int|null $divisions_count
* @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection<int, \Spatie\MediaLibrary\MediaCollections\Models\Media> $media
* @property-read int|null $media_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\NotificationSettingPivot> $settings
* @property-read int|null $settings_count
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting query()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereFromName($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting wherePrimaryColor($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSetting withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperNotificationSetting {}
}
namespace App\Models{
/**
* App\Models\NotificationSettingPivot
*
* @property string $id
* @property string $notification_setting_id
* @property string $related_to_type
* @property string $related_to_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $relatedTo
* @property-read \App\Models\NotificationSetting $setting
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot query()
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot whereNotificationSettingId($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot whereRelatedToId($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot whereRelatedToType($value)
* @method static \Illuminate\Database\Eloquent\Builder|NotificationSettingPivot whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperNotificationSettingPivot {}
}
namespace App\Models{
/**
* App\Models\Pronouns
*
* @property string $id
* @property string $label
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Audit\Models\Audit> $audits
* @property-read int|null $audits_count
* @method static \Database\Factories\PronounsFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns query()
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns whereLabel($value)
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Pronouns withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperPronouns {}
}
namespace App\Models{
/**
* App\Models\SettingsProperty
*
* @property string $id
* @property string $group
* @property string $name
* @property bool $locked
* @property mixed $payload
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty query()
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty whereGroup($value)
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty whereLocked($value)
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty wherePayload($value)
* @method static \Illuminate\Database\Eloquent\Builder|SettingsProperty whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperSettingsProperty {}
}
namespace App\Models{
/**
* App\Models\SystemUser
*
* @property string $id
* @property string $name
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Audit\Models\Audit> $audits
* @property-read int|null $audits_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Authorization\Models\Permission> $permissions
* @property-read int|null $permissions_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Authorization\Models\Role> $roles
* @property-read int|null $roles_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @property-read int|null $tokens_count
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable permission($permissions, $without = false)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser query()
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable role($roles, $guard = null, $without = false)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable withoutPermission($permissions)
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable withoutRole($roles, $guard = null)
* @method static \Illuminate\Database\Eloquent\Builder|SystemUser withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperSystemUser {}
}
namespace App\Models{
/**
* App\Models\Tenant
*
* @property string $id
* @property string $name
* @property string $domain
* @property mixed $key
* @property mixed $config
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property bool $setup_complete
* @method static \Spatie\Multitenancy\TenantCollection<int, static> all($columns = ['*'])
* @method static \Database\Factories\TenantFactory factory($count = null, $state = [])
* @method static \Spatie\Multitenancy\TenantCollection<int, static> get($columns = ['*'])
* @method static \Illuminate\Database\Eloquent\Builder|Tenant newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Tenant newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Tenant onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Tenant query()
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereConfig($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereDomain($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereKey($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereSetupComplete($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Tenant withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Tenant withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperTenant {}
}
namespace App\Models{
/**
* App\Models\User
*
* @property string $id
* @property string|null $emplid
* @property string|null $name
* @property string|null $email
* @property bool $is_email_visible_on_profile
* @property string|null $password
* @property string|null $remember_token
* @property string|null $locale
* @property string|null $type
* @property bool $is_external
* @property string|null $bio
* @property bool $is_bio_visible_on_profile
* @property string|null $avatar_url
* @property bool $are_teams_visible_on_profile
* @property bool $is_division_visible_on_profile
* @property string $timezone
* @property bool $has_enabled_public_profile
* @property string|null $public_profile_slug
* @property bool $office_hours_are_enabled
* @property bool $appointments_are_restricted_to_existing_students
* @property array|null $office_hours
* @property bool $out_of_office_is_enabled
* @property \Illuminate\Support\Carbon|null $out_of_office_starts_at
* @property \Illuminate\Support\Carbon|null $out_of_office_ends_at
* @property string|null $phone_number
* @property bool $is_phone_number_visible_on_profile
* @property bool $working_hours_are_enabled
* @property bool $are_working_hours_visible_on_profile
* @property array|null $working_hours
* @property string|null $job_title
* @property string|null $pronouns_id
* @property bool $are_pronouns_visible_on_profile
* @property bool $default_assistant_chat_folders_created
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property \Carbon\CarbonImmutable|null $last_chat_ping_at
* @property string|null $multifactor_secret
* @property-read string|null $multifactor_recovery_codes
* @property string|null $multifactor_confirmed_at
* @property bool $is_branding_bar_dismissed
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiAssistantUpvote> $aiAssistantUpvotes
* @property-read int|null $ai_assistant_upvotes_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiThreadFolder> $aiThreadFolders
* @property-read int|null $ai_thread_folders_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiThread> $aiThreads
* @property-read int|null $ai_threads_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Task\Models\Task> $assignedTasks
* @property-read int|null $assigned_tasks_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Audit\Models\Audit> $audits
* @property-read int|null $audits_count
* @property-read \AdvisingApp\MeetingCenter\Models\Calendar|null $calendar
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\CareTeam\Models\CareTeam> $careTeams
* @property-read int|null $care_teams_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\CaseManagement\Models\CaseAssignment> $caseAssignments
* @property-read int|null $case_assignments_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\CaseManagement\Models\ChangeRequestResponse> $changeRequestResponses
* @property-read int|null $change_request_responses_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\CaseManagement\Models\ChangeRequestType> $changeRequestTypes
* @property-read int|null $change_request_types_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\CaseManagement\Models\ChangeRequest> $changeRequests
* @property-read int|null $change_requests_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Consent\Models\ConsentAgreement> $consentAgreements
* @property-read int|null $consent_agreements_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\InAppCommunication\Models\TwilioConversation> $conversations
* @property-read int|null $conversations_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Engagement\Models\EngagementBatch> $engagementBatches
* @property-read int|null $engagement_batches_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Engagement\Models\Engagement> $engagements
* @property-read int|null $engagements_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\MeetingCenter\Models\CalendarEvent> $events
* @property-read int|null $events_count
* @property-read mixed $is_admin
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Authorization\Models\License> $licenses
* @property-read int|null $licenses_count
* @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection<int, \Spatie\MediaLibrary\MediaCollections\Models\Media> $media
* @property-read int|null $media_count
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Authorization\Models\Permission> $permissions
* @property-read int|null $permissions_count
* @property-read \App\Models\Pronouns|null $pronouns
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Prospect\Models\Prospect> $prospectCareTeams
* @property-read int|null $prospect_care_teams_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Prospect\Models\Prospect> $prospectSubscriptions
* @property-read int|null $prospect_subscriptions_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Authorization\Models\Role> $roles
* @property-read int|null $roles_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Segment\Models\Segment> $segments
* @property-read int|null $segments_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\StudentDataModel\Models\Student> $studentCareTeams
* @property-read int|null $student_care_teams_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\StudentDataModel\Models\Student> $studentSubscriptions
* @property-read int|null $student_subscriptions_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Notification\Models\Subscription> $subscriptions
* @property-read int|null $subscriptions_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Team\Models\Team> $teams
* @property-read int|null $teams_count
* @property-read \Illuminate\Database\Eloquent\Collection|\AdvisingApp\Alert\Models\Alert[] $studentAlerts
* @property-read int|null $student_alerts_count
* @property-read \Illuminate\Database\Eloquent\Collection|\AdvisingApp\Alert\Models\Alert[] $prospectAlerts
* @property-read int|null $prospect_alerts_count
* @property-read \Illuminate\Database\Eloquent\Collection|\AdvisingApp\Authorization\Models\Permission[] $permissionsFromRoles
* @property-read int|null $permissions_from_roles_count
* @property-read \Illuminate\Database\Eloquent\Collection|\AdvisingApp\CaseManagement\Models\CaseModel[] $cases
* @property-read int|null $cases_count
* @method static \Illuminate\Database\Eloquent\Builder|User admins()
* @method static \Illuminate\Database\Eloquent\Builder|User advancedFilter($data)
* @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 onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable permission($permissions, $without = false)
* @method static \Illuminate\Database\Eloquent\Builder|User query()
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable role($roles, $guard = null, $without = false)
* @method static \Illuminate\Database\Eloquent\Builder|User whereAppointmentsAreRestrictedToExistingStudents($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereArePronounsVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereAreTeamsVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereAreWorkingHoursVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereAvatarUrl($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereBio($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereDefaultAssistantChatFoldersCreated($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereDeletedAt($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 whereEmplid($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereHasEnabledPublicProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsBioVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsBrandingBarDismissed($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsDivisionVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsEmailVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsExternal($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsPhoneNumberVisibleOnProfile($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereJobTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLastChatPingAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLocale($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereMultifactorConfirmedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereMultifactorRecoveryCodes($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereMultifactorSecret($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereOfficeHours($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereOfficeHoursAreEnabled($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereOutOfOfficeEndsAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereOutOfOfficeIsEnabled($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereOutOfOfficeStartsAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePhoneNumber($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePronounsId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePublicProfileSlug($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereTimezone($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereWorkingHours($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereWorkingHoursAreEnabled($value)
* @method static \Illuminate\Database\Eloquent\Builder|User withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable withoutPermission($permissions)
* @method static \Illuminate\Database\Eloquent\Builder|Authenticatable withoutRole($roles, $guard = null)
* @method static \Illuminate\Database\Eloquent\Builder|User withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperUser {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiAssistant
*
* @property string $id
* @property string|null $assistant_id
* @property string $name
* @property string|null $description
* @property string|null $instructions
* @property string|null $knowledge
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property \AdvisingApp\Ai\Enums\AiApplication $application
* @property bool $is_default
* @property \AdvisingApp\Ai\Enums\AiModel $model
* @property \Illuminate\Support\Carbon|null $archived_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Audit\Models\Audit> $audits
* @property-read int|null $audits_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiAssistantFile> $files
* @property-read int|null $files_count
* @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection<int, \Spatie\MediaLibrary\MediaCollections\Models\Media> $media
* @property-read int|null $media_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiThread> $threads
* @property-read int|null $threads_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiAssistantUpvote> $upvotes
* @property-read int|null $upvotes_count
* @method static \AdvisingApp\Ai\Database\Factories\AiAssistantFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant query()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereApplication($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereArchivedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereAssistantId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereInstructions($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereIsDefault($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereKnowledge($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereModel($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistant withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiAssistant {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiAssistantFile
*
* @property string $id
* @property string $assistant_id
* @property string|null $file_id
* @property string|null $name
* @property string|null $temporary_url
* @property string|null $mime_type
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \AdvisingApp\Ai\Models\AiAssistant $assistant
* @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection<int, \Spatie\MediaLibrary\MediaCollections\Models\Media> $media
* @property-read int|null $media_count
* @method static \AdvisingApp\Ai\Database\Factories\AiAssistantFileFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile query()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereAssistantId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereFileId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereMimeType($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereTemporaryUrl($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantFile withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiAssistantFile {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiAssistantUpvote
*
* @property string $id
* @property string $assistant_id
* @property string $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \AdvisingApp\Ai\Models\AiAssistant $assistant
* @property-read \App\Models\User $user
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote query()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote whereAssistantId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiAssistantUpvote withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiAssistantUpvote {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiMessage
*
* @property string $id
* @property string|null $message_id
* @property string $content
* @property string|null $context
* @property array|null $request
* @property string $thread_id
* @property string|null $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiMessageFile> $files
* @property-read int|null $files_count
* @property-read \AdvisingApp\Ai\Models\AiThread $thread
* @property-read \App\Models\User|null $user
* @method static \AdvisingApp\Ai\Database\Factories\AiMessageFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage query()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereContext($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereMessageId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereRequest($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereThreadId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessage withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiMessage {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiMessageFile
*
* @property string $id
* @property string $message_id
* @property string|null $file_id
* @property string|null $name
* @property string|null $temporary_url
* @property string|null $mime_type
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection<int, \Spatie\MediaLibrary\MediaCollections\Models\Media> $media
* @property-read int|null $media_count
* @property-read \AdvisingApp\Ai\Models\AiMessage $message
* @method static \AdvisingApp\Ai\Database\Factories\AiMessageFileFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile query()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereFileId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereMessageId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereMimeType($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereTemporaryUrl($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiMessageFile withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiMessageFile {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiThread
*
* @property string $id
* @property string|null $thread_id
* @property string|null $name
* @property string $assistant_id
* @property string|null $folder_id
* @property string $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property \Illuminate\Support\Carbon|null $locked_at
* @property \Illuminate\Support\Carbon|null $saved_at
* @property int $cloned_count
* @property int $emailed_count
* @property-read \AdvisingApp\Ai\Models\AiAssistant $assistant
* @property-read \AdvisingApp\Ai\Models\AiThreadFolder|null $folder
* @property-read \Carbon\CarbonInterface|null $last_engaged_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiMessage> $messages
* @property-read int|null $messages_count
* @property-read \App\Models\User $user
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\User> $users
* @property-read int|null $users_count
* @method static \AdvisingApp\Ai\Database\Factories\AiThreadFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|AiThread newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiThread newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiThread onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiThread query()
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereAssistantId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereClonedCount($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereEmailedCount($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereFolderId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereLockedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereSavedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereThreadId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThread withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiThread withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiThread {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\AiThreadFolder
*
* @property string $id
* @property string $name
* @property \AdvisingApp\Ai\Enums\AiApplication $application
* @property string $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\AiThread> $threads
* @property-read int|null $threads_count
* @property-read \App\Models\User $user
* @method static \AdvisingApp\Ai\Database\Factories\AiThreadFolderFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder query()
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereApplication($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|AiThreadFolder withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperAiThreadFolder {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\LegacyAiMessageLog
*
* @property string $id
* @property string $message
* @property array $metadata
* @property string $user_id
* @property array $request
* @property \Illuminate\Support\Carbon $sent_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string|null $ai_assistant_name
* @property \AdvisingApp\Ai\Enums\AiFeature|null $feature
* @property-read \App\Models\User $user
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog query()
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereAiAssistantName($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereFeature($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereMessage($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereMetadata($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereRequest($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereSentAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|LegacyAiMessageLog whereUserId($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperLegacyAiMessageLog {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\Prompt
*
* @property string $id
* @property string $title
* @property string|null $description
* @property string $prompt
* @property string $type_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string|null $deleted_at
* @property string|null $user_id
* @property-read \AdvisingApp\Ai\Models\PromptType $type
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\PromptUpvote> $upvotes
* @property-read int|null $upvotes_count
* @property-read \App\Models\User|null $user
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\PromptUse> $uses
* @property-read int|null $uses_count
* @method static \AdvisingApp\Ai\Database\Factories\PromptFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Prompt newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Prompt newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Prompt query()
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt wherePrompt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereTypeId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Prompt whereUserId($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperPrompt {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\PromptType
*
* @property string $id
* @property string $title
* @property string|null $description
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \AdvisingApp\Ai\Models\Prompt> $prompts
* @property-read int|null $prompts_count
* @method static \AdvisingApp\Ai\Database\Factories\PromptTypeFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|PromptType newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|PromptType newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|PromptType onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|PromptType query()
* @method static \Illuminate\Database\Eloquent\Builder|PromptType whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptType whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptType whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptType whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptType whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptType whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptType withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|PromptType withoutTrashed()
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperPromptType {}
}
namespace AdvisingApp\Ai\Models{
/**
* AdvisingApp\Ai\Models\PromptUpvote
*
* @property string $id
* @property string $prompt_id
* @property string $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read \AdvisingApp\Ai\Models\Prompt $prompt
* @property-read \App\Models\User $user
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote query()
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|PromptUpvote wherePromptId($value)