Skip to content

All topics  /  Laravel

Laravel Command to Create symlink Storage Code Example

Laravel

Jan 25, 2021

Hi Guys,

In this blog,I will show you how to create symlink storage using command in laravel app.we will learn laravel command to create symlink storage.

You can artisan command to create the symbolic link from storage folder to public folder. This command will create symlink to "public" directory to your laravel project you should create a symbolic link from public/storage to storage/app/public.I am going to show you how to create symlink from 'public/storage' to 'storage/app/public'

php artisan storage:link

It will help you...