Posts

Showing posts with the label Barcode Generation

How to generate barcode using Laravel 8?

Image
How to generate barcode using Laravel 8? Let's discuss, how to generate barcode using Laravel 8? Hello developers, I'm Tridev Sharma(Software Developer @Laysan Technologies Pvt Ltd). Recently I worked on a Laravel project and I got a new feature to develop in this project that is Barcode generation. So, I thought to write a blog to let you know how i did it? This blog will guide you step by step to generate a barcode. So let's start it. Step 1 Open you terminal and write the following command to generate a fresh Laravel 8 Project. $ compoer create-project laravel/laravel barcode-generation When you run this command then it will generate a fresh Laravel Project. And you will have a success status like shown in below image.  If you have a running project then you may skip this project. Now let's move to the next step. After successful generation of project open it in a code editor. Here i am going to open it in Visual Studio Code. Step 2 Now execute the following command ...