bmau
06/14/2022, 12:37 PM{!! $block->input('text') !!}
or is there a special block function to deal with wysiwyg data?kalle
06/14/2022, 12:57 PMinput
should work with WYSIWYG fields.ifox
06/14/2022, 4:50 PMilcotti
06/15/2022, 10:04 AMKormi
06/15/2022, 1:13 PMKormi
06/15/2022, 1:21 PM<?php
namespace App\Models;
use A17\Twill\Models\Setting as TwillSettings;
class Setting extends TwillSettings
{
protected $casts = [
'sendinblue_list' => 'array',
];
}
but nothing change23r01nf1n17y
06/15/2022, 3:10 PMhttps://twill.io/docs/assets/img/nested-child-form.d1ea463c.png▾
localhost/hello-world/foo-bar
instead of
localhost/issues/hello-world/articles/foo-bar
ifox
06/15/2022, 3:44 PMifox
06/15/2022, 3:45 PMifox
06/15/2022, 3:47 PMMedvedOurs
06/16/2022, 11:31 AMBA7YA
06/16/2022, 11:52 AMkalle
06/16/2022, 12:41 PMkalle
06/16/2022, 12:49 PMmateoD
06/17/2022, 12:28 PMifox
06/17/2022, 12:29 PM->hasImage
before trying to render onemateoD
06/17/2022, 12:30 PMmateoD
06/17/2022, 12:31 PMifox
06/17/2022, 5:30 PMname
of your medias field in the block and your config for twill.block_editor.crops.<your-media-field-name>
?Sami
06/19/2022, 12:50 PMartisan serve
command with APP_URL
and ADMIN_APP_URL
set to 127.0.0.1
in .env
, I get errors in Twill when uploading/downloading images
If I use VirtualHosts and set a local domain for the app, then Vue from localhost:3000
shouts at me I'm making a CORS request 😅
Does anybody here use Laravel (+ Twill) with Vue and would be kind enough to give me some advice on how to setup the dev environment correctly?ifox
06/19/2022, 12:54 PMifox
06/19/2022, 12:56 PMSami
06/19/2022, 12:56 PMSami
06/19/2022, 12:58 PMSami
06/19/2022, 12:59 PMAPP_URL="http://127.0.0.1"
#TWILL
ADMIN_APP_URL="127.0.0.1"
ADMIN_APP_PATH=admin
MEDIA_LIBRARY_ENDPOINT_TYPE=local
Sami
06/19/2022, 12:59 PMifox
06/19/2022, 1:00 PMSami
06/19/2022, 1:01 PMSami
06/19/2022, 1:06 PM