translateable cms pages

This commit is contained in:
Arno Kaimbacher 2018-09-13 14:03:17 +02:00
parent ee8584a2d5
commit 0457e65565
8 changed files with 244 additions and 10 deletions

View file

@ -0,0 +1,13 @@
<?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'];
}