You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The perfect match for the [CKEditor field](https://github.com/Laravel-Backpack/ckeditor-field). The CKEditor column will just output the non-escaped text value of a db column (or model attribute). Its definition is simple:
215
+
216
+
```php
217
+
[
218
+
'name' => 'info', // The db column name
219
+
'label' => 'Info', // Table column heading
220
+
'type' => 'ckeditor',
221
+
],
222
+
```
223
+
224
+
For more information, please see [backpack/ckeditor-field](https://github.com/Laravel-Backpack/ckeditor-field) on Github - that is the add-on that provides this functionality.
225
+
226
+
<hr>
227
+
211
228
<aname="closure"></a>
212
229
### closure
213
230
@@ -818,6 +835,23 @@ The text column will just output the text value of a db column (or model attribu
The perfect match for the [`tinymce` field](https://github.com/Laravel-Backpack/tinymce-field). The tinymce column will just output the non-escaped text value of a db column (or model attribute). Its definition is simple:
842
+
```php
843
+
[
844
+
'name' => 'info', // The db column name
845
+
'label' => 'Info', // Table column heading
846
+
'type' => 'tinymce',
847
+
],
848
+
```
849
+
850
+
For more information on the TinyMCE field and column, see [backpack/tinymce-field](
851
+
The perfect match for the [`tinymce` field](https://github.com/Laravel-Backpack/tinymce-field)) on Github - that's the addon that provides this functionality.
852
+
853
+
<hr>
854
+
821
855
<aname="time"></a>
822
856
### time
823
857
@@ -983,21 +1017,6 @@ Show a thumbnail image stored in the db column as `base64` image string.
Copy file name to clipboardExpand all lines: 7.x-dev/crud-fields.md
+15-38Lines changed: 15 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -383,6 +383,13 @@ Input preview:
383
383
384
384
<hr>
385
385
386
+
<aname="ckeditor"></a>
387
+
### ckeditor
388
+
389
+
Show a WYSIWIG field to the user, powered by CKEditor. This field is provided as a first-party add-on - see instructions [here](https://github.com/Laravel-Backpack/ckeditor-field).
390
+
391
+
<hr>
392
+
386
393
<aname="color"></a>
387
394
### color
388
395
@@ -839,7 +846,7 @@ Input preview:
839
846
<aname="summernote"></a>
840
847
### summernote
841
848
842
-
Show a [Summernote wysiwyg editor](http://summernote.org/) to the user.
849
+
Show a [Summernote WYSIWYG editor](http://summernote.org/) to the user.
843
850
844
851
```php
845
852
CRUD::field([ // Summernote
@@ -963,6 +970,13 @@ CRUD::field([ // Time
963
970
964
971
<hr>
965
972
973
+
<aname="tinymce"></a>
974
+
### tinymce
975
+
976
+
Show a WYSIWYG editor powered by TinyMCE to the admin. This is provided using a first-party add-on - see instructions [here](https://github.com/Laravel-Backpack/tinymce-field).
977
+
978
+
<hr>
979
+
966
980
<aname="upload"></a>
967
981
### upload
968
982
@@ -1193,13 +1207,6 @@ Input preview:
1193
1207
1194
1208
<hr>
1195
1209
1196
-
<aname="ckeditor"></a>
1197
-
### ckeditor
1198
-
1199
-
This field is providedy by a third-party integration, you can find instructions on how to install and use it [here](https://github.com/Laravel-Backpack/ckeditor-field).

2542
2549
2543
2550
2544
-
<hr>
2545
-
2546
-
<aname="tinymce"></a>
2547
-
### tinymce
2548
-
2549
-
TinyMCE is now provided by a third-party package, you can find instructions on how to use and configure it [here](https://github.com/Laravel-Backpack/tinymce-field).
2550
-
2551
2551
<hr>
2552
2552
2553
2553
<aname="video"></a>
@@ -2581,29 +2581,6 @@ So you should use [attribute casting](https://mattstauffer.com/blog/laravel-5.0-
2581
2581
Vimeo does not require an API key in order to query their DB, but YouTube does, even though their free quota is generous. You can get a free YouTube API Key inside [Google Developers Console](https://console.developers.google.com/) ([video tutorial here](https://www.youtube.com/watch?v=pP4zvduVAqo)). Please DO NOT use our API Key - create your own. The key above is there just for your convenience, to easily try out the field. As soon as you decide to use this field type, create an API Key and use _your_ API Key. Our key hits its ceiling every month, so if you use our key most of the time it won't work.
0 commit comments