Laravel 9 Upload Images with Spatie Media Library Tutorial (ok)

https://www.positronx.io/laravel-upload-images-with-spatie-media-library-tutorial/

Chú ý bài viết phia dưới này Laravel Media Library Full có đầy đủ cả responsive

C:\xampp82\htdocs\testen\config\filesystems.php

C:\xampp82\htdocs\testen\database\migrations\2023_05_18_054827_create_media_table.php

C:\xampp82\htdocs\testen\database\migrations\2023_05_18_054915_create_clients_table.php

C:\xampp82\htdocs\testen\app\Models\Client.php

C:\xampp82\htdocs\testen\app\Http\Controllers\ClientController.php

C:\xampp82\htdocs\testen\routes\web.php

C:\xampp82\htdocs\testen\resources\views\create.blade.php

C:\xampp82\htdocs\testen\resources\views\index.blade.php

Laravel 9 Upload Images with Spatie Media Library Tutorial

Last updated on: April 24, 2023 by Digamber5.6MUbuntuDDE: New Ubuntu Remix With Deepin Desktop is a Beauty

In this Laravel 9 Spatie media-library tutorial, we will altogether learn how to integrate the spatie media library in the laravel app and show you the perfect example of how to use the Spatie media library in the Laravel application from scratch.

We will cover how to create a simple registration form with name, email and image (avatar) fields and upload avatar images with other form fields using the Laravel Spatie media library package.

Laravel is not a common framework, and it won’t be wrong to say it is a quintessential PHP framework. You can build robust web applications and web APIs with it; it comes with ready-made programming solutions which can exponentially enhance the web development speed.

However, it doesn’t come up with an image upload feature; in this guide, we will show you how to build an image or avatar upload with laravel form using spatie and medialibrary.

So, Let’s start implementing laravel media-library in laravel to upload the image using Spatie. This library comes with tons of features; you can explore more from the official documentation of Laravel Media Library. It is a gold mine of options that profoundly supports Laravel’s eloquent style.

Laravel 9 Upload Avatar Images using Spatie Media Library Example

  • Step 1: Download Laravel App

  • Step 2: Update Database Details

  • Step 3: Install Spatie Medialibrary in Laravel

  • Step 4: Set Up Migration and Model

  • Step 5: Build Controller File

  • Step 6: Build New Routes

  • Step 7: Set Up Blade View Files

  • Step 8: Add App URL

  • Step 9: Run Laravel App

Download Laravel App

Start the first step by using the Composer command to download the latest version of the Laravel app, get to the terminal and execute the command.

BashCopy

Update Database Details

Open the .env file and update your database details like database name, username and password as given below.

.propertiesCopy

If you are using MAMP local server in macOs; make sure to append UNIX_SOCKET and DB_SOCKET below database credentials in .env file.

BashCopy

Install Spatie Medialibrary in Laravel

Installing the Media library is easy and can be installed via Composer; if you want to use only the base package, please use the given command.

BashCopy

Let us prepare the database; you have to publish migration to create the media table for that.

BashCopy

Consequently, you have to execute a command to run migrations.

BashCopy

Set Up Migration and Model

Now, you have to generate “Client’s” migration and model files concurrently using the suggested command.

BashCopy

The suggested command generated, app/Models/Client.php, likewise you have to define the table schema into this model file.

PHPCopy

Make sure to import InteractsWithMedia and HasMedia services, append HasMedia with implements, and define InteractsWithMedia right after HasFactory service in the model file.

Secondly, get into the app/database/migrations/create_clients_table.php, similarly you need to add the table values into this migration file.

PHPCopy

Build Controller File

Next, go to terminal and execute command to generate a controller.

BashCopy

After running above command a new controller file created at app/Http/Controllers/ClientController.php path.

In this file, first import the Client model, we will use ClientController class to store client registeration form along with upload image into the database at the same time into the Medialibrary storage using the spatie media library.

PHPCopy

Build New Routes

Now, the controller has been set, its time to build new routes to handle the controller’s functions; get inside the routes/web.php and define the three routes with Get and Post methods altogether.

PHPCopy

Set Up Blade View Files

Now, we are ready to create view files; create two view these files, we will build a form for user registration and create a file to show clients data after fetching from the database.

Import bootstrap 5, create the form tag, pass the action tag along with the route, which stores the name, email and avatar profile image into the database.

After that, make create.php and update code in the app/resources/views/create.blade.php file.

PHPCopy

Create index.php and update code in the app/resources/views/index.blade.php file.

PHPCopy

Add App URL

In this step, you have to open the .env configuration file and look for the APP_URL variable and append the given url in-front.

BashCopy

Run Laravel App

By default, the public disk utilizes the local driver and stores its files in storage/app/public.

To make these files accessible from the web, you should create a symbolic link from public/storage to storage/app/public.

So, we can create the symbolic link to access the storage directory using the artisan command publicly.

BashCopy

You have reached final at the end of the tutorial, now start the app using the php artisan command:

BashCopy

Here is the link which will help you open the app on the browser and test.

BashCopy

Laravel Upload Images with Spatie Media Library Example

Conclusion

the best features of the Laravel framework, which is known as a Laravel file system and Laravel Spatie.

Laravel gives a compelling filesystem abstraction. In addition, it offers a great way to deal with simple drivers for working with local filesystems, SFTP, and Amazon S3.

If your storage requirement changes while developing, you can quickly switch between these storage options between your local development machine and production server as the API remains intact for every system.

Last updated

Was this helpful?