HelloCSE/app/Models/Profile_comment.php
2024-04-10 13:56:22 +02:00

21 lignes
421 o
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Profile_comment extends Model {
protected $table = "profile_comment";
// use HasFactory;
public $timestamps = false;
protected $fillable = [
'content',
'creator_id',
'profile_id',
'creation_date',
'modification_date',
];
}