2022-04-22 20:01:30 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2022-04-23 11:39:07 -07:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2022-04-27 18:57:21 -07:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2022-04-22 20:01:30 -07:00
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
|
2022-04-23 10:57:56 -07:00
|
|
|
class Collective extends Authenticatable
|
2022-04-22 20:01:30 -07:00
|
|
|
{
|
2022-04-27 18:57:21 -07:00
|
|
|
use HasApiTokens;
|
|
|
|
use Notifiable;
|
2022-04-22 20:01:30 -07:00
|
|
|
|
2022-04-23 16:25:16 -07:00
|
|
|
/* @var array<int, string> */
|
2022-04-27 18:57:21 -07:00
|
|
|
|
2022-04-22 20:01:30 -07:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'email',
|
|
|
|
'password',
|
|
|
|
];
|
|
|
|
|
2022-04-23 16:25:16 -07:00
|
|
|
/* @var array<int, string> */
|
|
|
|
|
2022-04-22 20:01:30 -07:00
|
|
|
protected $hidden = [
|
|
|
|
'password',
|
|
|
|
'remember_token',
|
|
|
|
];
|
|
|
|
|
2022-04-23 16:25:16 -07:00
|
|
|
/* @var array<string, string> */
|
|
|
|
|
2022-04-22 20:01:30 -07:00
|
|
|
protected $casts = [
|
|
|
|
'email_verified_at' => 'datetime',
|
|
|
|
];
|
2022-04-23 11:39:07 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
/* ----------------------------------------------------------------------- relationships ---- */
|
|
|
|
|
|
|
|
public function joined() : HasMany
|
|
|
|
{
|
|
|
|
return $this->hasMany(Joined::class);
|
|
|
|
}
|
2022-04-23 16:25:16 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
public function owned() : HasMany
|
|
|
|
{
|
|
|
|
return $this->hasMany(Owned::class);
|
|
|
|
}
|
2022-04-23 16:25:16 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
/* ---------------------------------------------------------------------------- password ---- */
|
2022-04-23 11:39:07 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
protected function password() : Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
set: fn ($value) => bcrypt($value),
|
|
|
|
);
|
|
|
|
}
|
2022-04-23 11:39:07 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
/* ------------------------------------------------------------------------------- store ---- */
|
2022-04-23 11:39:07 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
public static function store(array $validated) : Collective
|
|
|
|
{
|
|
|
|
$collective = new Collective();
|
|
|
|
$collective->title = $validated['title'];
|
|
|
|
$collective->name = $validated['name'];
|
|
|
|
$collective->email = $validated['email'];
|
|
|
|
$collective->password = $validated['password'];
|
|
|
|
$collective->save();
|
2022-04-23 11:39:07 -07:00
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
return $collective;
|
|
|
|
}
|
2022-04-22 20:01:30 -07:00
|
|
|
}
|