tethys/app/Models/PageTranslation.php

14 lines
254 B
PHP
Raw Normal View History

2018-09-13 12:03:17 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
// models/CountryTranslation.php
class PageTranslation extends Model
{
public $timestamps = false;
//protected $fillable = ['description'];
protected $guarded = ['id'];
}