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

14 lines
254 B
PHP

<?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'];
}