Home > front end >  Symbolik Link in laravel but in Live Server or Hosting?
Symbolik Link in laravel but in Live Server or Hosting?

Time:07-15

I have this storage folder in laravel and I want to put it in public_html outside my Main Folder in my hosting.

CodePudding user response:

Run in artisan command:

php artisan storage:link

make sure you already configure the ff. block in config/filesystems.php

'links' => [
    public_path('storage') => storage_path('app/public'),
    public_path('images') => storage_path('app/images'),
],
  • Related