Laravel 9 Image Upload with Preview Example

In this tutorial you will learn about the Laravel 9 Image Upload with Preview Example and its application with practical example.

In this Laravel 9 Image Upload with Preview example, we will learn how to upload image along with preview before upload in laravel 9. In this laravel 9 image upload example I’ll show you how to validate upload image into folder and then save it into database. In this tutorial before saving image into database we will show preview of the images and then save it into directory. Before uploading the image we will display preview of the image. After successfully image upload into the database and folder we will display success message on the screen.

Laravel 9 Image Upload with Preview

In this step by step Laravel 9 Image Upload with Preview tutorial I’ll demonstrate how to upload image in laravel 9 with preview. I’ll also show you how to upload image in laravel 9 with preview. Please follow the steps given below:

  • Install Laravel 9
  • Setup Database with App
  • Create Model & Migration
  • Create Routes
  • Generate Controller By Artisan Command
  • Create Blade View
  • Implement javascript Code to Show Image Preview
  • Create Images Directory inside Storage/app/public
  • Run Development Server

Install Laravel 9

First of all we need to create a fresh laravel project, download and install Laravel 9 using the below command

Configure Database In .env file

Now, lets create a MySQL database and connect it with laravel application. After creating database we need to set database credential in application’s .env file.

.env

Create Model & Migration

Now, we have to define table schema for photos table. Open terminal and let’s run the following command to generate a migration along with model file to create photos table in our database.

Once this command is executed you will find a migration file created under “database/migrations”. lets open migration file and put following code in it –

Now, run following command to migrate database schema.

After, the migration executed successfully the photos table will be created in database.

Create Routes

After this, we need to add following routes in “routes/web.php” file along with a resource route. Lets open “routes/web.php” file and add following route.

routes/web.php

Create Controller By Artisan Command

Now, lets create a controller for simple image uploading. Create a controller named ImageUploadController using command given below –

Once the above command executed, it will create a controller file ImageUploadController.php in app/Http/Controllers/ directory. Open the ImageUploadController.php file and put the following code in it.

app/Http/Controllers/ImageUploadController.php

Note:- Before uploading any file make sure you have created following directory in the storage/app/public folder called images.

Create Blade View

In this step, we will create view/blade file to generate and display Image Upload Form. Lets create a blade file “image-upload.blade.php” in “resources/views/” directory and put the following code in it respectively.

resources/views/image-upload.blade.php

Create Images Directory inside Storage/app/public

Before uploading any file make sure you have created following directory in the storage/app/public folder called images.

Start Development Server

Now we are ready to run our example so lets start the development server using following artisan command –

Now, open the following URL in browser to see the output –

In this tutorial we have learn about the Laravel 9 Image Upload with Preview Example and its application with practical example. I hope you will like this tutorial.