constantvariable.
constantvariable.
TCTwill CMS
Created by kerkness on 5/19/2023 in #👊support
DatePicker not updating or incorrectly updating field
In other words, it actually only works for SQL data of type DATETIME, not DATE
14 replies
TCTwill CMS
Created by kerkness on 5/19/2023 in #👊support
DatePicker not updating or incorrectly updating field
Hello, yes same problem here if the withTime option is set to false.
14 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
50 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
You can also define this: MEDIA_LIBRARY_LOCAL_PATH=uploads/
50 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
Check also the glide config in your .env file
50 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
Alos, be sure to clean all the caches : php artisan optimize && php artisan route:clear && php artisan config:clear
50 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
Ok that must be a symlink problem, are you sure the symlink is good ?
50 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
Does it work if you upload a new jpg file ?
50 replies
TCTwill CMS
Created by .ghostbane on 3/21/2023 in #👊support
Media Library / Glide only loading JPEGs
Hello, have you done the symlink to the storage path on the new server ? php artisan storage:link
50 replies
TCTwill CMS
Created by devtutorum on 11/29/2022 in #👊support
Browser fields the id of the object doesn't save
Ok ok, it's working
24 replies
TCTwill CMS
Created by devtutorum on 11/29/2022 in #👊support
Browser fields the id of the object doesn't save
I don't get it, sorry… here is my code: Model : Atwork.php

use A17\Twill\Models\Behaviors\HasRelated;

use HasTranslation, HasSlug, HasMedias, HasRelated;

/**
* Get the artist
*/

public function artist()
{
return $this->belongsTo(Artist::class);
}


use A17\Twill\Models\Behaviors\HasRelated;

use HasTranslation, HasSlug, HasMedias, HasRelated;

/**
* Get the artist
*/

public function artist()
{
return $this->belongsTo(Artist::class);
}

ArtworkRepository.php

protected $relatedBrowsers = ['artist'];

protected $relatedBrowsers = ['artist'];
artworks/form.blade.php
@formField('browser', [
'moduleName' => 'artists',
'name' => 'artist',
'label' => 'Artiste',
'max' => 1,
])
@formField('browser', [
'moduleName' => 'artists',
'name' => 'artist',
'label' => 'Artiste',
'max' => 1,
])
… in my table artworks, theire is a column with an integer artist_id
24 replies
TCTwill CMS
Created by devtutorum on 11/29/2022 in #👊support
Browser fields the id of the object doesn't save
🤙 I will try
24 replies
TCTwill CMS
Created by devtutorum on 11/29/2022 in #👊support
Browser fields the id of the object doesn't save
Hello, same problem here ;), did you find how to name the browser form field properly for a simple belongsTo relation ? Tx
24 replies