no backspace on readonly auto-complete
This commit is contained in:
parent
88d90b930d
commit
d0ed3e9105
5 changed files with 26 additions and 4 deletions
13
app/Models/TitleTranslation.php
Normal file
13
app/Models/TitleTranslation.php
Normal 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'];
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue