I've created symbolic link at local PC, where its working fine, but I've uploaded same it to shared hosting, it is not working there.
Basically I've images in the storage folder root/storage/public/images/
i want to display them by getting
$path=asset('storage/images/'.$item->image);
so the problem is in the shared hosting this way
$path=asset('storage/images/'.$item->image);
getting from the domain directory not from the parent directory, so for that there is no way to create symbolic link on shared hosting so what should I do to get images from the parent directory. I am beginner in laravel one can help me to solve this problem. Thanks