vianney
07/07/2021, 10:07 PMpboivin
07/07/2021, 10:08 PM<input :name="fieldName('vimeo_url')" ... >
pboivin
07/07/2021, 10:11 PMvianney
07/07/2021, 10:18 PMvianney
07/07/2021, 11:52 PMvianney
07/08/2021, 12:31 AMuser
07/08/2021, 11:06 AMifox
07/08/2021, 11:08 AMuser
07/08/2021, 11:09 AMen,de,nl,testa,testb
but on blogs you can only translate for en
and de
user
07/08/2021, 11:58 AMifox
07/08/2021, 12:13 PMifox
07/08/2021, 12:15 PMifox
07/08/2021, 12:16 PMuser
07/08/2021, 1:34 PMifox
07/08/2021, 1:37 PMuser
07/08/2021, 1:37 PMuser
07/08/2021, 1:37 PMifox
07/08/2021, 1:38 PMuser
07/08/2021, 1:39 PMuser
07/08/2021, 1:42 PMifox
07/08/2021, 1:42 PMuser
07/08/2021, 1:43 PM@formField('input', [
'name' => 'title',
'label' => 'Title',
'maxlength' => 100
])
If you not want nullables fields and the modal I expect that the developer wants the data before record creation. This means he needs to add the title field to the form. But why is a permalink always added?ifox
07/08/2021, 1:45 PMuser
07/08/2021, 1:47 PMuser
07/08/2021, 1:47 PMuser
07/08/2021, 1:50 PMSQLSTATE[42S22]: Column not found: 1054 Unknown column 'library_items.deleted_at' in 'where clause' (SQL: select count(*) as aggregate from `library_items` where `library_items`.`deleted_at` is null)
pboivin
07/08/2021, 2:11 PM$forceDeleting = true
on your model :
class Article extends Model implements Sortable
{
use HasBlocks, HasSlug, HasMedias, HasFiles, HasRevisions, HasPosition;
protected $forceDeleting = true;
This is totally from base Laravel by the way :
https://laravel.com/api/8.x/Illuminate/Database/Eloquent/SoftDeletes.htmluser
07/08/2021, 2:12 PMpboivin
07/08/2021, 2:12 PM