Answers for "laravel what is max file size upload"

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 Illuminate\Support\Facades\Storage;

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

Code answers related to "laravel what is max file size upload"

Browse Popular Code Answers by Language