File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,12 @@ sudo COMPOSER_ALLOW_SUPERUSER=1 composer install --no-dev --optimize-autoloader
74
74
Even though composer might tell you that you have outdated dependencies, do ** not** run ` composer update ` !
75
75
</Admonition >
76
76
77
+ ### Create storage symlinks
78
+
79
+ ``` sh
80
+ php artisan storage:link
81
+ ```
82
+
77
83
### Clear Compiled Template Cache
78
84
79
85
You'll also want to clear the compiled template cache to ensure that new and modified templates show up correctly for
Original file line number Diff line number Diff line change @@ -168,6 +168,9 @@ echo "Optimizing"
168
168
php artisan optimize:clear
169
169
php artisan filament:optimize
170
170
171
+ echo " Creating storage symlinks"
172
+ php artisan storage:link
173
+
171
174
echo " Updating database"
172
175
php artisan migrate --seed --force
173
176
You can’t perform that action at this time.
0 commit comments