Larastan is a development dependency that adds static analysis to Laravel, improving developer productivity and code quality. At the core, it’s a PHPStan wrapper for Laravel and helps you find errors in your code through static analysis. It helps catch bugs before…
What are nolocal and global keywords used for? These two keywords are used to change the scope of a previously declared variable. nolocal is often used when you need to access a variable in a nested function: global is a more straightforward instruction. It makes a previously…
Laravel Site Search is a package by Spatie to create a full-text search index by crawling your site. You can think of it as a private Google search for your sites to crawl and index all your content and provide a…
When it comes to queues, the AWS SQS service is a great option. It’s super cheap, super reliable, and can scale higher than most of us will ever need. In general, I’m a fan of any service I don’t have to manage…
TALL Toasts is a toast notification library for the Laravel TALL stack (Tailwind, Alpine.js, Laravel, Livewire). What makes this package stand out to me is the ability to render customizable toast messages from either the backend or frontend. The TALL Toasts…
The Laravel team released 8.65 with the ability to generate test files during make commands, a string headline method, getting a subset of data as a collection from the request instance, and the latest changes in the v8.x branch. String…
Introduction to Python: Python was developed by Guido van Rossum and was released first on February 20, 1991. It is one of the most widely-used and loved programming languages and is interpreted in nature thereby providing flexibility of incorporating dynamic…
Learn how to create a random password generator in Python. We know that passwords are a real security threat. To keep your account safe and prevent your password from being hacked you have to make your password hard enough that…
Learn how to convert your Text into Voice with Python and Google APIs Text to speech is a process to convert any text into voice. Text to speech project takes words on digital devices and convert them into audio with…
To make machines more intelligent, developers are diving into machine learning and deep learning techniques. A human learns to perform a task by practicing and repeating it again and again so that it memorizes how to perform the tasks. Then…