no backspace on readonly auto-complete

This commit is contained in:
Arno Kaimbacher 2018-11-29 11:58:00 +01:00
parent 88d90b930d
commit d0ed3e9105
5 changed files with 26 additions and 4 deletions

View file

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