Table of contents

get file size on uploaded file in laravel

In this post, I will share a short solution on how to determine the file size on uploaded files in Laravel 8. Sometimes we need to check first the user file uploaded to our server if meets our standard size before saving it.

 

So here's how should do it.

 

First, create your post route.

Route::post('/files/add', 'FilesController@store')->name('files.store');

 

Then in your controller let's create a store method.

 

/**
* Store a newly created resource in storage.
*
* @param  Request  $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
    echo $request->file->getSize();
}

 

Then that's it you will know if what is the byte size of your file and convert it to MB or KB.

 

I hope it helps. Thank you for reading :)

 

Cheers :)