Based on https://github.com/pascalbaljetmedia/laravel-webdav
Via Composer
$ composer require tyangjawi03/laravel-nextcloud
Register the service provider in your app.php config file:
// config/app.php
'providers' => [
...
Jedlikowski\NextCloudStorage\NextCloudServiceProvider::class
...
];
Create a NextCloud filesystem disk:
// config/filesystems.php
'disks' => [
...
'nextcloud' => [
'driver' => 'nextcloud',
'baseUri' => 'https://mywebdavstorage.com',
'userName' => 'johndoe',
'password' => 'secret',
'pathPrefix' => '', // provide a subfolder name if your NextCloud instance isn't running directly on a domain, e.g. https://example.com/drive
'objectGuid' => 'OBJECT_GUID', // optional params, used when NextCloud instance is using AD/LDAP as Authentication provider so the webDav url will be look like e.g https://example.com/remote.php/dav/files/OBJECT_GUID/
],
...
];
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.