ItSolutionStuff.com

How to Generate BarCode in Laravel?

By Hardik Savani • April 16, 2024
Laravel

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, laravel 9, laravel 10 and laravel 11 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

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

<?php


Route::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

<!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...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 8 QR Code Generate Example

Read Now →

Laravel Livewire Wizard Form Example

Read Now →

Laravel Send Mail using Mailgun Example

Read Now →

Laravel Send Mail using Mailtrap Example

Read Now →

Laravel 8 Socialite Login with Facebook Account Example

Read Now →

Laravel Google Chart Example Tutorial

Read Now →

Laravel 8 Stripe Payment Gateway Integration Example

Read Now →

How to Get Last Executed Query in Laravel 8?

Read Now →

How to Generate QR Code in Laravel 7/6?

Read Now →

JQuery QR Code Scanner using Instascan JS Example

Read Now →