| Zeile 7... |
Zeile 7... |
| 7 |
use Illuminate\Foundation\Auth\User as Authenticatable;
|
7 |
use Illuminate\Foundation\Auth\User as Authenticatable;
|
| 8 |
use Illuminate\Notifications\Notifiable;
|
8 |
use Illuminate\Notifications\Notifiable;
|
| 9 |
use Laravel\Sanctum\HasApiTokens;
|
9 |
use Laravel\Sanctum\HasApiTokens;
|
| 10 |
use Illuminate\Database\Eloquent\Casts\Attribute;
|
10 |
use Illuminate\Database\Eloquent\Casts\Attribute;
|
| Zeile -... |
Zeile 11... |
| - |
|
11 |
|
| - |
|
12 |
/**
|
| - |
|
13 |
* App\Models\User
|
| - |
|
14 |
*
|
| - |
|
15 |
* @property int $id
|
| - |
|
16 |
* @property string $name
|
| - |
|
17 |
* @property string $email
|
| - |
|
18 |
* @property \Illuminate\Support\Carbon|null $email_verified_at
|
| - |
|
19 |
* @property string $password
|
| - |
|
20 |
* @property string $remember_token
|
| - |
|
21 |
* @property string $created_by
|
| - |
|
22 |
* @property string $updated_by
|
| - |
|
23 |
* @property \Illuminate\Support\Carbon|null $created_at
|
| - |
|
24 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
| - |
|
25 |
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
|
| - |
|
26 |
* @property-read int|null $notifications_count
|
| - |
|
27 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
|
| - |
|
28 |
* @property-read int|null $tokens_count
|
| - |
|
29 |
* @method static \Database\Factories\UserFactory factory($count = null, $state = [])
|
| - |
|
30 |
* @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
|
| - |
|
31 |
* @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
|
| - |
|
32 |
* @method static \Illuminate\Database\Eloquent\Builder|User query()
|
| - |
|
33 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value)
|
| - |
|
34 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedBy($value)
|
| - |
|
35 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value)
|
| - |
|
36 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value)
|
| - |
|
37 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
|
| - |
|
38 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
|
| - |
|
39 |
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
|
| - |
|
40 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
|
| - |
|
41 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
|
| - |
|
42 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedBy($value)
|
| - |
|
43 |
* @mixin \Eloquent
|
| 11 |
|
44 |
*/
|
| 12 |
class User extends Authenticatable
|
45 |
class User extends Authenticatable
|
| 13 |
{
|
46 |
{
|
| Zeile 14... |
Zeile 47... |
| 14 |
use HasApiTokens, HasFactory, Notifiable;
|
47 |
use HasApiTokens, HasFactory, Notifiable;
|
| 15 |
|
48 |
|