PHP code example of samluvanda / uploadx-laravel

1. Go to this page and download the library: Download samluvanda/uploadx-laravel 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/ */

    

samluvanda / uploadx-laravel example snippets


return [
    'default' => 'default',
    'profiles' => [
        'default' => [
            'disk' => 'local',
            'path' => 'uploads',
            'combine_chunks' => true,
            'validate' => [
                'file' => ['input('chunks');
                        if (is_numeric($chunks) && $value >= (int) $chunks) {
                            $fail("The $attribute field must be less than chunks.");
                        }
                    },
                ],
                'chunks' => [
                    '

'avatars' => [
    'disk' => 'public',
    'path' => 'uploads/avatars',
    'combine_chunks' => false,
    'validate' => [
        'file' => ['

use UploadX\Controllers\UploadController;

Route::post('/upload', UploadController::class);
bash
php artisan uploadx:install

config/uploadx.php