How to Generate BarCode in Laravel?
How to Generate BarCode in Laravel?
By Hardik Savani January 4, 2021 Category : LaravelPlayUnmuteLoaded: 1.17%Fullscreen
hi,
In this tutorial, you will learn laravel barcode generator example. We will use how to generate barcode in laravel. you will learn how to save generated bar code in laravel. Here you will learn laravel barcode tutorial. Here, Creating a basic example of picqer/php-barcode-generator laravel php.
You can easily generate barcode in laravel 5, laravel 6, laravel 7, laravel 8 and laravel 9 version.
picqer/php-barcode-generator is a composer package for generate barcode in your laravel 8 application. you can simply generate svg, png, jpg and html image of barcode.
Here, i write example step by step to generate bar code in your laravel admin panel. so let's follow few steps to get this example:
Preview:

Step 1: Install Laravel
In first step, If you haven't installed laravel in your system then you can run bellow command and get fresh Laravel project.
composer create-project --prefer-dist laravel/laravel blog
Step 2: Install picqer/php-barcode-generator Package
Now we require to install picqer/php-barcode-generator package for barcode generator, that way we can use it's method. So Open your terminal and run bellow command.
composer require picqer/php-barcode-generator
Read Also: JQuery HTML5 QR Code Scanner using Instascan JS Example
Step 3: Create Route
In this step, we will create one route for testing example. So, let's add new route on that file.
routes/web.php
<?phpRoute::view('barcode', 'barcode');
Step 4: Create Blade file
now we need to create barcode.blade.php for display bar code. so let's create blade file as like bellow code:
resources/views/barcode.blade.php
Read Also: Laravel Carbon diffForHumans() Example
<!DOCTYPE html><html><head> <title>How to Generate Bar Code in Laravel? - ItSolutionStuff.com</title></head><body> <h1>How to Generate Bar Code in Laravel? - ItSolutionStuff.com</h1> <h3>Product: 0001245259636</h3>@php $generator = new Picqer\Barcode\BarcodeGeneratorHTML();@endphp {!! $generator->getBarcode('0001245259636', $generator::TYPE_CODE_128) !!} <h3>Product 2: 000005263635</h3>@php $generatorPNG = new Picqer\Barcode\BarcodeGeneratorPNG();@endphp <img src="data:image/png;base64,{{ base64_encode($generatorPNG->getBarcode('000005263635', $generatorPNG::TYPE_CODE_128)) }}"></body></html>
Now you can run and check it.
I hope it can help you...
Last updated
Was this helpful?