PHP code example of abrardev / laravel-local-temporary-url

1. Go to this page and download the library: Download abrardev/laravel-local-temporary-url library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

abrardev / laravel-local-temporary-url example snippets


return [
    'disk' => ['local'],

    'middleware' => ['web', 'signed']
];

Storage::disk('local')->temporaryUrl('file.txt', now()->addMinutes(5));

Storage::disk('local')->temporaryUrl('file.txt', now()->addMinutes(5), ['filename' => 'customname']);

[
  'ResponseContentType' => 'application/octet-stream',
  'ResponseContentDisposition' => 'attachment; filename=file2.jpg',
]
bash
php artisan vendor:publish --tag="local-temporary-url-config"