-
$request->hasFile('photo'); (To check the request key is a valid file)
-
movie.mp4 / images.jpg / .png / .gif / document.doc / sheets.xls / datasheet.csv $extension = $request->photo->extension();
-
$name = 'my-image.'.$extension;
-
$request->image->storeAs( '', // Folder $name, // Name 'public' // public );
-
Use this in form where we upload image (enctype="multipart/form-data")
To install bootstrap with user authentication template php artisan ui bootstrap --auth