cms-token/@core/app/VideoGallery.php

12 lines
202 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class VideoGallery extends Model
{
protected $table = 'video_galleries';
protected $fillable = ['title','embed_code','status'];
}