What is the benefit of TypeScript vs JavaScript?
TypeScript, a statically typed language developed by Microsoft that builds on JavaScript, offers several advantages over plain JavaScript. Here are the key benefits: 1. Static Typing TypeScript introduces static types, meaning variables, functions, and objects can be assigned types. This helps developers catch errors during development rather than at runtime, reducing the likelihood of runtime […]
Setup Laravel Livewire with VUE.JS
Laravel Livewire gives you an easy way to create a SPA in just a few seconds. For most ajax features is Livewire the right choice, but what if you go in depth? Sometimes you may need some special features like charts or any other JS stuff. Then it can be useful to go back to […]
How to use Laravel 8 with VUE.JS, Inertia and Jetstream
If you are familiar with Laravel version 5,6 and 7, you might wonder that in version 8 there are some major changes. If you start a project from scratch in version 8, it can be a bit frustrating when you see all the new stuff, especially when you set up the new Auth system. In […]
Tempus Dominus with Laravel 6
Tempus Dominus is a nice jQuery plugin for a date-time input. It’s easy to use and fast to install.
How to use FPDF in your Laravel App
Creating a PDF on the fly is a big advantage of the FPDF library. You can use it for generating invoices, printable documentations or much more. It’s easy to use and for free. Here I will show you how to use FPDF in your Laravel application with a small example. First install the FPDF package […]