PHP code example of iritesh377 / laravel-local-temporary-url
1. Go to this page and download the library: Download iritesh377/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/ */
iritesh377 / laravel-local-temporary-url example snippets
return [
'disk' => ['local'],
'middleware' => ['web', 'signed']
];
Storage::disk('local')->temporaryUrl('file.txt', now()->addMinutes(5));
bash
php artisan vendor:publish --tag="local-temporary-url-config"