2018-04-17 01:35:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2018-06-14 00:52:42 +00:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-04-17 01:35:01 +00:00
|
|
|
|
|
|
|
class Like extends Model
|
|
|
|
{
|
2018-06-14 00:52:42 +00:00
|
|
|
use SoftDeletes;
|
|
|
|
|
2024-04-29 08:46:14 +00:00
|
|
|
const MAX_PER_DAY = 1500;
|
2022-05-09 06:33:01 +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'
|
|
|
|
];
|
|
|
|
|
2023-01-21 14:48:27 +00:00
|
|
|
protected $fillable = ['profile_id', 'status_id', 'status_profile_id'];
|
2018-06-14 00:52:42 +00:00
|
|
|
|
2018-04-17 01:35:01 +00:00
|
|
|
public function actor()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
2018-04-17 01:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function status()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Status::class);
|
2018-04-17 01:35:01 +00:00
|
|
|
}
|
|
|
|
}
|