tethys/app/Models/TitleTranslation.php

14 lines
262 B
PHP
Raw Normal View History

2018-11-29 10:58:00 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
// models/CountryTranslation.php
class TitleTranslation extends Model
{
public $timestamps = false;
protected $fillable = ['title', 'description'];
protected $guarded = ['id'];
}