| 12345678910111213141516171819 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class Like extends Model
- {
- use HasFactory;
- protected $primaryKey = 'id';
- protected $casts = [
- 'id' => 'string',
- ];
- protected $fillable = ['type', 'target_id', 'target_type', 'user_id', 'context'];
- }
|