Laravel 5.8 Image File Upload

“Upload Image in Laravel 5.8,Laravel 5.8 Image File Upload, Upload Image and Files with Validation in Laravel 5.8”

Hello friends, today I will tell you through this tutorial how do you upload image files through Laravel 5.8. So we will learn step-to-step in Laravel 5.8.

Step 1: – In Laravel 5.8 you first create a form and take a field input type file in it. Just like the lower form has been created. You can also copy this form.

resources/views/image.blade.php

<!DOCTYPE html>
<html>
<head>
<title>Laravel 5.8 Image File Upload</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
</head>
<body>
<form action="{{url('fileupload')}}" enctype="multipart/form-data" method="post">
<input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
<div class="col-md-12">
<div class="form-group">
<label for="">File Select</label>
<input required type="file" class="form-control" name="images">
</div>
</div>
<div class="col-md-6">
<div class="box-footer">
<button type="submit" class="btn btn-primary">Save</button>
</div>
</div>
</form>
</body>
</html>

Routes/web.php

Step 2: – In this step, when we select the file, submit the data by post method. So in the web.php file, the url of post method will be given in this way. And add this url to the controller.

Route::get('image', function () {
return view('image');
});
Route::post('fileupload', 'singleimageController@fileupload');

singleimageController.php

Step 3: – Now we will create this one controller and keep this controller’s name as singleimageController.php. Then after that we will write the code to upload image file in these controller. How to upload multiple image files in Laravel 5.8 You can see the code in this controller.

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
use DB;
use Validator;
use Redirect;
use View;
class singleimageController extends Controller
{
public function fileupload(Request $request)
{
if($files=$request->file('images')){
$name=$files->getClientOriginalName();
$files->move('image',$name);
DB::table('img')->insert([
'image' => $name
]);
}
return redirect()->back()->with('message', 'Successfully Save Your Image file.');
}
}