-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path_ide_helper_models.php
144 lines (138 loc) · 8.02 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
<?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 <[email protected]>
*/
namespace App\Models{
/**
*
*
* @property int $id
* @property int $author_id
* @property string $title
* @property string $slug
* @property \App\Enumerations\BlogPostStatus $status
* @property string $seo_description
* @property string $content
* @property array $tags
* @property \Illuminate\Support\Carbon|null $published_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\User|null $author
* @method static \Database\Factories\BlogPostFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost published()
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereAuthorId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost wherePublishedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereSeoDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereSlug($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereTags($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder<static>|BlogPost withoutTrashed()
*/
class BlogPost extends \Eloquent {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property int $user_id
* @property string $provider
* @property string $provider_id
* @property string|null $name
* @property string|null $nickname
* @property string|null $email
* @property string|null $telephone
* @property string|null $avatar_path
* @property string $token
* @property string|null $secret
* @property string|null $refresh_token
* @property \Illuminate\Support\Carbon|null $expires_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\User|null $user
* @method static \Database\Factories\ConnectedAccountFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereAvatarPath($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereExpiresAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereNickname($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereProvider($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereProviderId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereRefreshToken($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereSecret($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereTelephone($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereToken($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConnectedAccount whereUserId($value)
*/
class ConnectedAccount extends \Eloquent {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string|null $password
* @property string|null $remember_token
* @property string|null $two_factor_secret
* @property string|null $two_factor_recovery_codes
* @property string|null $two_factor_confirmed_at
* @property string|null $profile_photo_path
* @property \App\Enumerations\Role $role
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \JoelButcher\Socialstream\ConnectedAccount> $connectedAccounts
* @property-read int|null $connected_accounts_count
* @property-read string $get_photo_url
* @property-read mixed $is_admin
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read string $profile_photo_url
* @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<static>|User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|User query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereProfilePhotoPath($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereRole($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereTwoFactorConfirmedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereTwoFactorRecoveryCodes($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereTwoFactorSecret($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereUpdatedAt($value)
*/
class User extends \Eloquent implements \Filament\Models\Contracts\FilamentUser, \Illuminate\Contracts\Auth\MustVerifyEmail {}
}