Jens
04/14/2023, 1:22 PMifox
04/14/2023, 1:23 PMJens
04/14/2023, 1:24 PM@twillBlockTitle('Text Image')
@twillBlockIcon('text')
@twillBlockGroup('app')
@php
$selectOptions = [
[
'value' => 'left',
'label' => 'Image | Text'
],
[
'value' => 'right',
'label' => 'Text | Image'
]
];
@endphp
<x-twill::medias
name="image"
label="Image"
/>
<x-twill::select
name="imagePosition"
label="Image Position"
placeholder="Select an option"
:options="$selectOptions"
/>
<x-twill::input
name="title"
label="Title"
:translated="true"
/>
<x-twill::wysiwyg
name="text"
label="Text"
placeholder="Text"
:toolbar-options="[
'bold',
'italic',
['list' => 'bullet'],
['list' => 'ordered'],
[ 'script' => 'super' ],
[ 'script' => 'sub' ],
'link',
'clean'
]"
:translated="true"
/>
ifox
04/14/2023, 1:25 PMtwill.php
config file yet, correct?Jens
04/14/2023, 1:27 PM<?php
return [
'default_crops' => [
'page_cover' => [
'default' => [
[
'name' => 'default',
'ratio' => 16 / 9,
]
]
],
],
'block_editor' => [
'crops' => [
'square' => [
'desktop' => [
[
'name' => 'desktop',
'ratio' => 1,
],
],
'mobile' => [
[
'name' => 'mobile',
'ratio' => 1,
],
],
],
],
],
];
ifox
04/14/2023, 1:27 PMifox
04/14/2023, 1:28 PMblock_editor.crops
there is a default image
keyifox
04/14/2023, 1:29 PMsquare
as the name of your medias
fieldJens
04/14/2023, 1:31 PMJens
04/14/2023, 1:31 PMhttps://cdn.discordapp.com/attachments/1096425299345952769/1096427525212753950/image.png▾
Jens
04/14/2023, 1:32 PM