jigar

Results 8 comments of jigar

@bryandonwhite This command is not working in laravel 5.2. is there any other way?

is there any way for windows? @bryandonwhite

https://stackoverflow.com/questions/38045119/how-to-create-symlink-from-public-storage-to-storage-app-public-in-laravel solution is: App::make('files')->link(storage_path('app/public'), public_path('storage')); but still i am getting issue in above answer. ![image](https://cloud.githubusercontent.com/assets/15965253/26689589/c29bd696-4713-11e7-8a10-9ccd7bca0e63.png)

@bryandonwhite is there any solution for windows than let me know

https://laravel.com/api/5.2/Illuminate/Filesystem/Filesystem.html#method_link @bryandonwhite laravel 5.2 does not support link method. is there any other way?

@bryandonwhite I found one solution for laravel 5.2 in windows. App::make('files')->copyDirectory(storage_path('app\public\uploads'), public_path('storage\uploads')); there is one function to copy whole directory its working for me now. when i move my code...

I put that code in boot method of AppServiceProvider.php so it will call every time when page load. so it copy images from that folder to public director folder. I...

@bryandonwhite sure i will. Thank you.