How to upload multiple images in Laravel

A detailed guide on how to upload multiple images in Laravel, including setting up the upload form, processing data on the server, and storing images.

In this article, we will explore how to create a form and handle the process of uploading multiple images in Laravel efficiently. You will be guided step-by-step from setting up the HTML form to storing the images on the server.

PHP Laravel code:

Step 1: Setting up the upload form

Create the upload.blade.php file in the resources/views directory:

<!-- resources/views/upload.blade.php -->
<!DOCTYPE html>
<html>
<head>
    <title>Upload Multiple Images in Laravel</title>
</head>
<body>
    <form action="{{ route('upload.images') }}" method="POST" enctype="multipart/form-data">
        @csrf
        <label for="images">Select multiple images:</label>
        <input type="file" name="images[]" multiple>
        <button type="submit">Upload</button>
    </form>
</body>
</html>

Step 2: Create routes for the upload process

In the web.php file:

// routes/web.php
use App\Http\Controllers\ImageUploadController;

Route::get('/upload-images', [ImageUploadController::class, 'showUploadForm']);
Route::post('/upload-images', [ImageUploadController::class, 'uploadImages'])->name('upload.images');

Step 3: Create a controller to handle uploads

Run the command to create the controller:

php artisan make:controller ImageUploadController

Then add the code to ImageUploadController.php:

// app/Http/Controllers/ImageUploadController.php
namespace App\Http\Controllers;

use Illuminate\Http\Request;

class ImageUploadController extends Controller
{
    public function showUploadForm()
    {
        return view('upload');
    }

    public function uploadImages(Request $request)
    {
        $request->validate([
            'images' => 'required',
            'images.*' => 'image|mimes:jpeg,png,jpg,gif,svg|max:2048'
        ]);

        if ($request->hasfile('images')) {
            foreach ($request->file('images') as $image) {
                $name = time().'_'.$image->getClientOriginalName();
                $image->move(public_path('images'), $name);
            }
        }

        return back()->with('success', 'Images have been successfully uploaded!');
    }
}

Detailed explanation:

  1. name="images[]" multiple: Sets the input to allow selecting multiple images.
  2. route('upload.images'): Defines the URL to handle the upload process.
  3. $request->validate: Validates the uploaded files, ensuring each one is an image and under 2MB.
  4. foreach ($request->file('images') as $image): Iterates over each uploaded image file.
  5. $image->move(public_path('images'), $name): Stores the image in the public/images directory.

System Requirements:

  • Laravel version 8 or higher
  • PHP version 7.3 or higher
  • Server with composer installed

How to install Laravel:

Use the following command to install Laravel:

composer create-project --prefer-dist laravel/laravel upload-images-example

Tips:

  • Ensure the storage directory (public/images) has write permissions.
  • Check file size and type before uploading to avoid errors.
Tags: Laravel, Upload


Related

All ways to SELECT data from a MySQL database in Laravel

Explore various methods to select data from a MySQL database in Laravel, including using Eloquent ORM and Query Builder.
Guide to integrating VNPAY in Laravel with a Sandbox account

A detailed guide on how to integrate VNPAY into a Laravel project using VNPAY's Sandbox account to process online payments, including configuration, payment URL creation, handling callback responses, and creating the interface.
All Ways to DELETE Data from MySQL Database in Laravel

A comprehensive guide on various methods to delete data from a MySQL database in Laravel, including Eloquent, Query Builder, and how to implement soft deletes.
How to Force HTTPS in Laravel

A detailed guide on how to force HTTPS in Laravel, ensuring all requests to your application are redirected to HTTPS, thus enhancing your website's security.
How to implement Google login in Laravel

A detailed guide on how to integrate Google login functionality in Laravel using the Laravel Socialite package. This article will guide you through setting up Google API and configuring it in Laravel.
All methods to UPDATE data in a MySQL database using Laravel

A comprehensive guide on how to update data in a MySQL database using Laravel, covering both Eloquent ORM and Query Builder methods.
Generating Captcha in Laravel

A detailed guide on how to create a Captcha in Laravel to protect forms from spam and verify user authenticity. This tutorial will help you integrate Captcha into your Laravel project with ease.
JSON Web Token (JWT) Authentication with Laravel

Step-by-step guide to implementing API authentication using JSON Web Token (JWT) in Laravel. This article covers installation and configuration to secure your web application using token-based authentication.
Guide to implementing Apple ID login in Laravel

A detailed guide on how to integrate Apple ID login into a Laravel application using OAuth2. Learn how to configure your application to connect with Apple services and handle user login via Apple ID.
All ways to insert data into MySQL database in Laravel

Explore different methods to insert data into a MySQL database in Laravel, including using Eloquent ORM and Query Builder.

main.add_cart_success