Php

Php posts, videos, courses, and more

Valerio · 1 month ago

Laravel custom helper functions – Fast Tips

Helper functions are quite popular among Laravel developers. They provide access to some clever algorithms ready to be used in your code using a single statement. Probably the most known hel...

Bobby Iliev · 1 month ago

How To Use Pan for Easy Analytics in Your Laravel App

Introduction When you're building a website or an app, knowing how users interact with it is key to improving the experience. However, many tracking tools are complicated, costly, or don't c...
4

Valerio · 2 months ago

Laravel Auth Routes Tutorial

Laravel auth routes is one of the essential features of the Laravel framework. Using middlewares you can implement different authentication strategies and attach them to different parts of y...

Valerio · 2 months ago

Laravel Livewire: What it is, and how to use it in your web app

Livewire is one of the most important projects in the Laravel ecosystem specifically targeted to frontend development. Livewire v3 has been recently released, so let’s explore what Livewire...
1

Valerio · 2 months ago

Laravel Password Hashing With Salt

Recently we went deep into the Laravel authentication system for some improvements and to add Multi-Factor authentication. I discovered some interesting details on how Laravel password hashi...

Valerio · 2 months ago

How to group array by date in PHP – Fast Tips

I use this technique to group the bug fixes array by date in the Inspector dashboard, and I thought it could be a good code snippet idea for others. I also wrote an implementation for Larave...

TechvBlogs · 11 months ago

How to Install PHP 8.3 on Ubuntu 22.04

PHP is a popular server scripting language known for creating dynamic and interactive web pages. Getting up and running with your language of choice is the first step in learning to program....
3

Supernova3339 · 1 year ago

Simplifying Your Video Playback With Laravel

As Laravel developers, we're always on the lookout for ways to enhance the user experience in our applications. Implementing smooth and user-friendly video playback can be a game-changer. In...
5

Supernova3339 · 1 year ago

Simplifying Laravel Upgrade Tasks: A Guide to Automating Your Development Workflow

As Laravel developers, we know that upgrading our applications can be a pain. There are always a bunch of tasks like building assets, running database migrations, and clearing your applicati...
5

Bobby Iliev · 1 year ago

How to use DigitalOcean Spaces with Laravel Voyager?

Introduction DigitalOcean Spaces is an object storage service that allows you to store and serve large amounts of data. It is a reliable and flexible solution for developers, especially when...
3

Valerio · 1 year ago

AWS SQS in a large scale application

In today's article, I'm going to show you how we use AWS SQS in our Laravel application, and how it helps us to manage 1.6 billion operations each month. In the image below you can see our t...
1

Baransel · 1 year ago

A Comprehensive Guide to Getting Started with PHP: Tips, Tricks, and Code Examples

Basic Syntax Before we dive into the tips and tricks, let's go over the basic syntax of PHP. Here's a simple example that outputs "Hello, World!" to the screen: <?php echo &quo...
1

Bobby Iliev · 1 year ago

How to increase the size of the file upload in Laravel Voyager Media Manager?

Introduction Laravel Voyager is a great open-source admin panel for Laravel. It is also the admin panel currently used in Laravel Wave which is a Laravel SaaS starter kit. In this article, y...
4

Bobby Iliev · 1 year ago

How to setup Laravel Wave on Windows using Laragon?

Introduction Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) archite...
4

TechvBlogs · 2 years ago

How to Get only records created today in Laravel

Hey Folks, If you are working on large-scale Applications or any SAAS application and as of project requirement. You need to show some analytics in your project like Today, Yesterday, Last M...
3

TechvBlogs · 2 years ago

How to Install Multiple PHP Versions on Ubuntu 22.04

PHP is a programming language used for developing web applications. You must install PHP packages on a Ubuntu system to run the application written on it. Generally, it is used to create e-...
6

Richard Dobroň · 2 years ago

Localizing PHP application with FBT instead of standard i18n

Since about 2010, I have been looking for a translation framework for PHP that can generate very complex phrases and at the same time combine options such as singular/plural and work with ge...
5

TechvBlogs · 2 years ago

Laravel 9 CRUD Example Tutorial for Beginners

Throughout this Laravel 9 CRUD operation with an example for beginners tutorial, you will learn step-by-step guide on how to build a simple crud operation app in laravel 9 and how to validat...
5

TechvBlogs · 2 years ago

Laravel Pint - A PHP Code Style Fixer for Minimalists

The long-awaited hype train is finally over, Laravel latest open-source CLI app has been released to the world, and we got our hands on it to tell you all about it. Introducing Laravel Pin...
5

Vladimír Macháček · 2 years ago

Write optimized CSS in Symfony with Stylify

Stay in Twig and PHP files, write HTML and get optimized CSS. From anoying switching between files to flawless coding. Learn how to improve the coding experience in your Symfony Web Applicat...

TechvBlogs · 2 years ago

Laravel 9 Eloquent WHERE Like Query Example Tutorial

When you put the search form in your application, you need to use like query to get matched pattern. The LIKE a query is used in a WHERE clause to search for a specified pattern in a column....
5

TechvBlogs · 2 years ago

How To Install PHP 8.1 on Ubuntu 22.04

PHP is a popular server scripting language known for creating dynamic and interactive web pages. Getting up and running with your language of choice is the first step in learning to program....
3

TechvBlogs · 2 years ago

How To Optimize Laravel for Performance

Laravel is a popular open-source PHP framework that’s known for its robust security and simple yet sophisticated coding architecture. It’s a great choice for building cutting-edge web applic...
3

TechvBlogs · 2 years ago

How to make a POST request with cURL

What is cURL? Curl is a command-line utility that allows users to create network requests. Curl is accessible on Windows, Linux, and Mac, making it the go-to choice for developers across all...
3

Bobby Iliev · 2 years ago

How to use Materialize with DigitalOcean Serverless Functions

Introduction ❗️ This demo includes examples for an unsupported version of Materialize (0.26.x) ❗️ Materialize is a streaming database for real-time analytics. It was launched in 2019 to...
4

Bobby Iliev · 2 years ago

Scaling Laravel with Serverless Redis

Introduction Laravel is a popular PHP framework for building scalable, high-performance web applications. In this article, we will learn how to use serverless Redis to scale Laravel applicat...
7

TechvBlogs · 2 years ago

Custom helper functions in Laravel

Laravel provides us with many built-in helper functions that you can call anywhere within your application. They make your workflow convenient for working with arrays & objects, paths, s...
4

Posandu Mapa · 2 years ago

Create a SPA with PHP

Today, we will create an SPA with PHP. Our output will look like this. (The GIF, a bit slow 😑) Getting started Our directory structure will be like this. 📦spa ┣ 📜about.php // A page ┣...
4

TechvBlogs · 2 years ago

PHP Curl Get Request with Parameters Example

What is cURL in PHP? The Client for URLs is shortly called cURL, which was originally pronounced with a URL in uppercase to emphasize that it deals with URLs. It's pronounced as: see URL. cU...
5

Valerio · 2 years ago

Laravel cron scheduling and its secrets

Hi, I'm Valerio Barbera, software engineer, founder and CTO at Inspector. One of the most useful features of Laravel is the cron scheduling system.The official documentation clearly explains...
2

Loading More Content