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