mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
26 lines
459 B
PHP
26 lines
459 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class StudioPlusVideoStatusTrack extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'studio_plus_video_id',
|
|
'name'
|
|
];
|
|
|
|
protected $appends = [
|
|
'stamp'
|
|
];
|
|
|
|
public function getStampAttribute()
|
|
{
|
|
return $this->created_at->format('F j, Y g:i A');
|
|
}
|
|
}
|