Files
monica/app/Models/Post.php
T

134 lines
3.0 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;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\Relations\MorphOne;
use Illuminate\Support\Str;
class Post extends Model
{
use HasFactory;
protected $table = 'posts';
/**
* The attributes that are mass assignable.
*
* @var array<string>
*/
protected $fillable = [
'journal_id',
'slice_of_life_id',
'title',
'view_count',
'published',
'written_at',
'updated_at',
];
/**
* The attributes that should be cast to native types.
*
* @var array<string, string>
*/
protected $casts = [
'published' => 'boolean',
'written_at' => 'datetime',
'updated_at' => 'datetime',
];
/**
* Get the journal associated with the post.
*/
public function journal(): BelongsTo
{
return $this->belongsTo(Journal::class);
}
/**
* Get the slice of life associated with the post.
*/
public function sliceOfLife(): BelongsTo
{
return $this->belongsTo(SliceOfLife::class);
}
/**
* Get the post sections associated with the post.
*/
public function postSections(): HasMany
{
return $this->hasMany(PostSection::class);
}
/**
* Get the contacts associated with the post.
*/
public function contacts(): BelongsToMany
{
return $this->belongsToMany(Contact::class);
}
/**
* Get the post's feed item.
*/
public function feedItem(): MorphOne
{
return $this->morphOne(ContactFeedItem::class, 'feedable');
}
/**
* Get the tags associated with the post.
*/
public function tags(): BelongsToMany
{
return $this->belongsToMany(Tag::class);
}
/**
* Get the files associated with the post.
*/
public function files(): MorphMany
{
return $this->morphMany(File::class, 'fileable');
}
/**
* Get the post's title.
*
* @return Attribute<string,string>
*/
protected function title(): Attribute
{
return Attribute::make(
get: function ($value) {
if ($value) {
return $value;
}
return trans('app.undefined');
},
set: fn ($value) => $value,
);
}
/**
* Get the post's body excerpt.
*
* @return Attribute<string,never>
*/
protected function excerpt(): Attribute
{
return Attribute::make(
get: fn () => Str::limit(optional($this->postSections()->whereNotNull('content')->first())->content, 200)
);
}
}