OurSpace/app/Models/ProfilePin.php
2025-01-07 21:19:38 -05:00

15 lines
202 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ProfilePin extends Model
{
protected $fillable = [
"activity_id",
"note_id",
"actor_id"
];
}