tethys/app/Models/PageTranslation.php
2020-06-10 21:09:13 +02:00

14 lines
261 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
// models/CountryTranslation.php
class PageTranslation extends Model
{
public $timestamps = false;
protected $fillable = ['title', 'description'];
protected $guarded = ['id'];
}