Files
monica/app/Models/Emotion.php

68 lines
1.6 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Emotion extends Model
{
use HasFactory;
protected $table = 'emotions';
/**
* Possible category.
*/
public const TYPE_POSITIVE = 'positive';
public const TYPE_NEUTRAL = 'neutral';
public const TYPE_NEGATIVE = 'negative';
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
'account_id',
'name',
'name_translation_key',
'type',
];
/**
* Get the account associated with the emotion.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Account, $this>
*/
public function account(): BelongsTo
{
return $this->belongsTo(Account::class);
}
/**
* Get the name of the reverse relationship attribute.
* Emotion entries have a default name that can be translated.
* Howerer, if a name is set, it will be used instead of the default.
*
* @return Attribute<string,string>
*/
protected function name(): Attribute
{
return Attribute::make(
get: function ($value, $attributes) {
if (! $value) {
return __($attributes['name_translation_key']);
}
return $value;
},
set: fn ($value) => $value,
);
}
}