Laravel access to files from another PC / Mapped Network Drive

102 views Asked by At

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',
    ],

enter image description here

is there any correct way to do this? thanks

0

There are 0 answers