Files
quayso.sisvietnam.vn/app/Models/Post.php
T

20 lines
326 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'
];
}