fanatic/app/Models/Collective.php
2022-04-23 16:25:16 -07:00

65 lines
1.4 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
class Collective extends Authenticatable
{
use HasApiTokens, Notifiable;
/* @var array<int, string> */
protected $fillable = [
'name',
'email',
'password',
];
/* @var array<int, string> */
protected $hidden = [
'password',
'remember_token',
];
/* @var array<string, string> */
protected $casts = [
'email_verified_at' => 'datetime',
];
/* --------------------------------------------------------------------------- relationships ---- */
public function joined()
{
return $this->hasMany(Joined::class);
}
/* -------------------------------------------------------------------------------- password ---- */
protected function password() : Attribute
{
return Attribute::make(
set: fn ($value) => bcrypt($value),
);
}
/* ----------------------------------------------------------------------------------- store ---- */
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();
return $collective;
}
}