cesargb / laravel-magiclink

Create link for authenticate in Laravel without password or get private content
MIT License
359 stars 43 forks source link

Custom disk in DownloadFileAction #33

Closed cesargb closed 3 years ago

cesargb commented 3 years ago

Add method disk to defined a disk to download.

Example:

$action = new DownloadFileAction('text_alternative.txt');
$action->disk('ftp');

$magiclink = MagicLink::create($action);