Top programming languages 2022-2025

This article will highlight what actually matters right now and how programming languages landscape is shaping up in shorter to medium term. The article will only cover the real programming languages, therefore just set aside HTML, CSS, SQL, Bash / shell script etc. for a while. So, without further ado, let’s go! Here are top … Read more

Laravel 9 tutorial using Breeze

In this tutorial we’ll create Laravel 9 CRUD app using default Breeze starter kit. Laravel 9.x requires a minimum PHP version of 8.0. This tutorial assumes that you are using Linux, MacOS or WSL on Windows and Node.js, Composer and PHP 8 along with required modules i.e bcmatch, sqlite, mbstring, xml, zip, gd, mcrypt are … Read more

Using template in PHPWord

In this tutorial we’ll use template capability of PHPWord library. Sometimes you just want to generate a document by changing few fields in it. In this case, using template is suitable than generating whole document programmatically. Let’s build a Laravel 8 app which outputs docx file using template. You can start by creating a fresh … Read more

Comprehensive tutorial on PHPSpreadsheet

In this tutorial we’ll look into using PhpSpreadsheet library, a pure php library to read and write spreadsheets including MS Excel. You can start by creating a fresh laravel 8 app by entering following command: Now install phpspreadsheet by executing the following command inside project directory: Next, setup database and Laravel environment file as usual. … Read more