Answers for "how to set max file upload size in laravel"

PHP
2

laravel validate max file size

$validator = Validator::make($request->all(), [
    'file' => 'max:500000',
]);
Posted by: Guest on May-05-2020
0

how to get the size of an uploaded file in laravel

use IlluminateSupportFacadesStorage;

$size = Storage::size('public/'.$picture->filename');
Posted by: Guest on December-22-2020

Code answers related to "how to set max file upload size in laravel"

Browse Popular Code Answers by Language