File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 8
8
use Illuminate \Notifications \Notifiable ;
9
9
use Laravel \Sanctum \HasApiTokens ;
10
10
11
+ /**
12
+ * App\Models\User.
13
+ *
14
+ * @property int $id
15
+ * @property string $name
16
+ * @property string $email
17
+ * @property \Illuminate\Support\Carbon|null $email_verified_at
18
+ * @property string $password
19
+ * @property string|null $remember_token
20
+ * @property \Illuminate\Support\Carbon|null $created_at
21
+ * @property \Illuminate\Support\Carbon|null $updated_at
22
+ * @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
23
+ * @property-read int|null $notifications_count
24
+ * @property-read \Illuminate\Database\Eloquent\Collection|\Laravel\Sanctum\PersonalAccessToken[] $tokens
25
+ * @property-read int|null $tokens_count
26
+ * @method static \Database\Factories\UserFactory factory(...$parameters)
27
+ * @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
28
+ * @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
29
+ * @method static \Illuminate\Database\Eloquent\Builder|User query()
30
+ * @mixin \Eloquent
31
+ */
11
32
class User extends Authenticatable
12
33
{
13
34
use HasApiTokens, HasFactory, Notifiable;
You can’t perform that action at this time.
0 commit comments