21 lignes
421 o
PHP
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',
|
|
];
|
|
}
|