Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 92f8834

Browse files
Merge pull request #110 from majdghithan/patch-1
Update usage and installation md files
2 parents 11c66e1 + 8b72787 commit 92f8834

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

docs/installation.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ Optionally, you can publish the config file for [Customization](./usage-and-cust
2222
php artisan vendor:publish --tag="filament-forms-tinyeditor-config"
2323
```
2424

25+
You may need to run Artisan storage:link command to see the images stored
26+
```bash
27+
php artisan storage:link
28+
```
29+
2530
## Upgrade
2631

2732
Like installation, you don't have to do anything more after upgrade unless you work using **Forms standalone**. In that case, you need to run the following command:

docs/usage-and-customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ tinymce.init({
100100
### **Image Upload**
101101
You can customize how the image plugin handles uploads using the methods associated with the `HasFileAttachments` trait. This measns you can specify the storage disk driver, directory and image visibility easily using methods directly on the field component.
102102
```php
103-
TinyEditor::make('content')->fileAttachmentsDisk('local')->fileAttachmentsVisibility('public')->fileAttachmentsDirectory('uploads');
103+
TinyEditor::make('content')->fileAttachmentsDisk('local')->fileAttachmentsVisibility('public')->fileAttachmentsDirectory('uploads'),
104104
```
105105

106106
### **Editor Height**
@@ -128,7 +128,7 @@ TinyEditor::make('content')->showMenuBar()
128128
To sticky the menubar of the editor, use the `->toolbarSticky()` method:
129129

130130
```php
131-
TinyEditor::make('content')->toolbarSticky()
131+
TinyEditor::make('content')->toolbarSticky(true)
132132
```
133133

134134
### **Localization**

0 commit comments

Comments
 (0)