Initial Commit

This commit is contained in:
2026-01-07 15:46:00 +01:00
commit 7133af82e3
1454 changed files with 362274 additions and 0 deletions

76
app/Models/User.php Normal file
View File

@@ -0,0 +1,76 @@
<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use App\UserStatus;
use App\UserType;
use App\Models\UserSocialLink;
use App\Models\Post;
class User extends Authenticatable
{
/** @use HasFactory<\Database\Factories\UserFactory> */
use HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'name',
'email',
'password',
"username",
"picture",
"bio",
"type",
"status"
];
/**
* The attributes that should be hidden for serialization.
*
* @var list<string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
"status" => UserStatus::class,
"type" => UserType::class,
];
}
public function getPictureAttribute($value) {
return $value ? asset("/images/users/".$value) : asset("/images/users/default-avatar.png");
}
public function social_links() {
return $this->hasOne(UserSocialLink::class, "id", "user_id");
}
public function getTypeAttribute($value) {
return $value;
}
public function posts() {
return $this->hasMany(Post::class, 'author_id', 'id');
}
}