Answers for "how to check max size upload size laravel"

PHP
3

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

Browse Popular Code Answers by Language