tethys/app/Models/PageTranslation.php

13 lines
228 B
PHP
Raw Normal View History

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