Sorry i'm still new to this. I would like to access/read files from another PC within the same network using Laravel. I can access the files over mapped network drive from my PC.
I have try to access through Laravel Storage disk but still failed for drive over network. Here is my filesystems.php
'example1' => [
'driver' => 'local',
'root' => 'W:/',
],
'example2' => [
'driver' => 'local',
'root' => '10.1.101.11/reports',
],
is there any correct way to do this? thanks