I have no idea on how to create symbolic link or symlink.
I am working on File system in laravel 5.2.
The document says th
Added same code but still getting issue. Method link does not exist. currently i am adding link in my controller constructor.
here is code:
public function index()
{
$shots=[];
App::make('files')->link(storage_path('app\public'), public_path('..\public\storage'));
return View::make('adminpages.index',['shots'=>$shots]);
}