pixelfed/app/Avatar.php

37 wiersze
642 B
PHP

2018-05-20 21:51:11 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
2018-06-14 00:52:42 +00:00
use Illuminate\Database\Eloquent\SoftDeletes;
2018-05-20 21:51:11 +00:00
class Avatar extends Model
{
2018-06-14 00:52:42 +00:00
use SoftDeletes;
2018-05-20 21:51:11 +00:00
2018-06-14 00:52:42 +00:00
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
2023-04-20 04:30:37 +00:00
protected $casts = [
'deleted_at' => 'datetime',
'last_fetched_at' => 'datetime',
'last_processed_at' => 'datetime'
2021-01-26 04:30:37 +00:00
];
protected $guarded = [];
2019-02-12 07:38:29 +00:00
2021-01-26 04:30:37 +00:00
protected $visible = [
'id',
'profile_id',
'media_path',
'size',
];
2019-02-12 07:38:29 +00:00
public function profile()
{
return $this->belongsTo(Profile::class);
}
2018-05-20 21:51:11 +00:00
}