|
1 | 1 | <?php |
2 | 2 |
|
3 | | -namespace App; |
| 3 | +namespace App\Models; |
4 | 4 |
|
5 | | -use Illuminate\Contracts\Auth\MustVerifyEmail; |
| 5 | +use Illuminate\Database\Eloquent\Factories\HasFactory; |
6 | 6 | use Illuminate\Foundation\Auth\User as Authenticatable; |
7 | 7 | use Illuminate\Notifications\Notifiable; |
8 | 8 |
|
|
19 | 19 | * @property \Illuminate\Support\Carbon|null $updated_at |
20 | 20 | * @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications |
21 | 21 | * @property-read int|null $notifications_count |
22 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User newModelQuery() |
23 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User newQuery() |
24 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User query() |
25 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereCreatedAt($value) |
26 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmail($value) |
27 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmailVerifiedAt($value) |
28 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value) |
29 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereName($value) |
30 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User wherePassword($value) |
31 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereRememberToken($value) |
32 | | - * @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value) |
| 22 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User newModelQuery() |
| 23 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User newQuery() |
| 24 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User query() |
| 25 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereCreatedAt($value) |
| 26 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereEmail($value) |
| 27 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereEmailVerifiedAt($value) |
| 28 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereId($value) |
| 29 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereName($value) |
| 30 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User wherePassword($value) |
| 31 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereRememberToken($value) |
| 32 | + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereUpdatedAt($value) |
33 | 33 | * @mixin \Eloquent |
34 | 34 | */ |
35 | 35 | class User extends Authenticatable |
36 | 36 | { |
37 | | - use Notifiable; |
| 37 | + use Notifiable, HasFactory; |
38 | 38 |
|
39 | 39 | /** |
40 | 40 | * The attributes that are mass assignable. |
|
0 commit comments