PHP code example of zipferot3000 / laravel-filepond-adapter
1. Go to this page and download the library: Download zipferot3000/laravel-filepond-adapter 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/ */
zipferot3000 / laravel-filepond-adapter example snippets
return [
/*
* These options set filesystem for save temporary files
*/
'filesystem' => env('FP_ADAPTER_TEMPORARY_FS', 'temporary'),
/*
* These options set name of media collection for temporary files
*/
'media_collection' => env('FP_ADAPTER_MC', 'temporary_files'),
/*
* These options set custom property name for media object
*/
'custom_property_name' => env('FP_ADAPTER_CP_NAME', 'file_type'),
];