Files
-S.I.S-QuaySo_v2/app/Models/Post.php
T
2026-03-26 09:28:14 +07:00

20 lines
345 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $fillable = [
'id',
'post_url',
'post_image',
'post_title',
'post_summary',
'post_content',
'post_author',
'post_status',
'post_like'
];
}