14 lines
254 B
PHP
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'];
|
||
|
}
|