#Laravel News
Laravel Black Friday Deals
You can save huge amounts of money on everything from training courses to full applications. This year we’ve compiled a list of all the hot sales.
#News
By Eric L. Barnes | Nov 25, 2024
Build Your SaaS App in No Time with SaaSykit
SaaSykit is a feature-rich SaaS Starter Kit that comes with all the essential components needed to run a modern SaaS app.
#Sponsor
By Eric L. Barnes | Nov 25, 2024
Handling Default Values in Laravel Request using mergeIfMissing
Learn how Laravel's mergeIfMissing method simplifies handling optional inputs in your applications and set default values for missing request data whi…
#Laravel Tutorials
By Harris Raftopoulos | Nov 25, 2024
Automated Composer Security Audits in Laravel with Warden
Warden is a Laravel package that performs security audits on your Composer dependencies and provides automated notifications for vulnerabilities.
#Laravel Packages
By Paul Redmond | Nov 25, 2024
Efficient Large Dataset Handling in Laravel Using streamJson()
Discover how Laravel's streamJson method transforms large dataset handling with incremental JSON streaming. Learn to enhance performance, minimize mem…
#Laravel Tutorials #Response
By Harris Raftopoulos | Nov 25, 2024
Access Request Data Fluently in Laravel 11.34
This week, the Laravel team released v11.34, with a Request::fluent() method, a Number::spellOrdinal() helper, conditional route definitions, shorthan…
#News #Laravel Releases
By Paul Redmond | Nov 26, 2024
PIE (PHP Installer for Extensions)
PIE aims to simplify managing PHP extensions by providing a modern, flexible alternative to PECL and treating extensions as first-class citizens in th…
#News
By Yannick Lyn Fatt | Nov 27, 2024
Optimizing Route Permissions with Laravel's Enhanced Enum Support
Learn how Laravel's improved enum support streamlines route permission checks by removing the need for ->value. Simplify your route definitions and ma…
#Laravel Tutorials #Enums
By Harris Raftopoulos | Nov 25, 2024
Managing API Rate Limits in Laravel Through Job Throttling
Discover how to use Redis::throttle in Laravel to prevent API flooding with effective job rate limiting. Learn a practical approach to managing email…
#Laravel Tutorials #Php #Redis #Throttling
By Harris Raftopoulos | Nov 25, 2024
#Ashallen Design UK
Working with Images in Laravel Using Intervention Image
#Laravel #PHP #Tips & Tricks #Web Development
By Ashley Allen | Nov 25, 2024
#Freek Dev
What's new in PHP 8.4
PHP 8.4 was released last week. Here's what's new.
By – | Nov 25, 2024
Importing a frontend Javascript library without a build system
A nice guide by Julia Evans
By – | Nov 27, 2024
Laravel Custom Query Builders Over Scopes
While scopes are useful for simple queries, custom query builders are preferred for complex or frequently used queries.
By – | Nov 28, 2024
Dynamically build Mail, DB, and Cache configurations in Laravel
Laravel’s new build() methods allow dynamic configuration of mail, database, and cache settings.
By – | Nov 29, 2024
#Made with Laravel
Simple Slides – Text-first Presentation Tool
"Simple Slides is a responsive and text-first presentation tool that keeps your audience engaged, and is built with:
Laravel
Vue + TypeScript
PostgreSQL
Presentations built with Simple Slides typically focus on:
Prioritizing text-content
Low amount of content per slide
Many slides, and changing through slides quickly
Ready to create your first Simple Slides presentation? It's easy and free! You can use Simple Slides even without an account."
#App
By – | Nov 28, 2024
Advanced Inertia – Course
"Take your Inertia.js skills to the next level: Learn advanced concepts and make apps with Laravel and Inertia.js a breeze to build and maintain."
180-page book: Step-by-step guide to building complex Inertia-powered apps that are easy to maintain for years to come.
Code examples: Learn how to build a connecting layer between a Laravel backend and Inertia.js frontend through practical content.
Real application code: Source code of Mixjobs, a production-ready Laravel application built using the best practices from the guide.
#Tutorials
By – | Nov 28, 2024
#Hashnode
Implementasi Autentikasi Passkey di Aplikasi Laravel Kamu
Passkey adalah masa depan dari autentikasi. Dengan teknologi ini, Kamu bisa mengizinkan pengguna membuat akun dan login hanya dengan perangkat mereka, tanpa perlu memasukkan kata sandi.
Apa Itu Passkey?
Passkey memungkinkan pengguna untuk login mengg…
By Abd. Asis | Nov 25, 2024
Laravel Macros ile Kod Tekrarını Azaltma ve Daha Temiz Kod Yazma Yöntemleri
Laravel Macros, belirli sınıflara veya nesnelere yeni fonksiyonlar eklemeyi sağlayan bir yapıdır. Bu, genellikle Laravel'in temel özelliklerinden olan Collections, Request, Response gibi sınıflara daha fazla fonksiyon eklemek için kullanılır. Macros,…
By Onur Evren | Nov 25, 2024
Integrating OpenTelemetry with PHP Applications: A Zero-Code Approach
Understanding OpenTelemetry
OpenTelemetry is an open-source observability framework that provides a unified way to generate, collect, and export telemetry data (metrics, logs, and traces). By integrating OpenTelemetry into your PHP application, you c…
By Ankita Lunawat | Nov 26, 2024
Laravel'de Debugbar Kullanmadan Sorgu Performansını İzleme ve Optimize Etme Rehberi
Yazılım geliştirme dünyasında, web uygulamalarının performansı her geçen gün daha da önem kazanıyor. Laravel projelerinde, veritabanı sorgu performansını izlemek ve optimize etmek, kullanıcı deneyimini doğrudan etkileyen kritik bir faktör haline geld…
By Onur Evren | Nov 26, 2024
Observers in Laravel: Simplifying Model Event Handling With Real-World Examples
In Laravel, Observers are classes used to handle model events cleanly and efficiently. Events like creating, created, updating, updated, deleting, and deleted occur when a model undergoes specific changes. Observers allow us to separate this logic fr…
By Muhammed ElFeqy | Nov 26, 2024
Dynamic Relationship Binding: Laravel'de Dinamik Model İlişkileri
Laravel, model ilişkilerini tanımlamak için güçlü ve esnek bir altyapı sunar. Genelde ilişkiler, modeller içinde hasOne, hasMany, belongsTo, veya belongsToMany gibi metotlarla tanımlanır. Ancak, bazı durumlarda bu ilişkileri dinamik olarak, çalışma z…
By Onur Evren | Nov 27, 2024
How to move assets between containers in Statamic 5
I recently realized that in one of my blueprints, inside a custom “captioned image” Bard set I was unintentionally storing images in a local asset container, instead of my Digital Ocean-backed container. On top of that, these images were in some case…
By Amadeusz Annissimo | Nov 29, 2024
Spam Protection: Implementing Google reCAPTCHA in Laravel Without a Package (With Full MVC Setup)
This post walks you through implementing Google reCAPTCHA v2 in a Laravel application from scratch. We’ll create a full MVC structure to manage comments, integrate Google reCAPTCHA, and protect against spam. The focus is on providing all the necessar…
By Nguyen Thi Thao | Nov 29, 2024
The Memory-Efficient Guide to Blazing Fast CSV Filtering with PHP
When it comes to processing large CSV files, memory consumption can quickly become a bottleneck. Loading a 10-million-line CSV file into memory? That's a recipe for an out-of-memory error. But what if I told you that you could Filter such a file usin…
By Juan Millan | Nov 25, 2024
Laravel SQL Injection Prevention: A Comprehensive Guide
SQL Injection is a common and serious issue in web apps. It allows attackers to run any SQL queries on your database, which could lead to data breaches, data loss, or even taking over your app's backend. As a Laravel developer, it's really important …
By Anik Kumar Nandi | Nov 30, 2024
How to Enhance Your Code Using PHP Iterators
Introduction
When working with large datasets, iterating over arrays or objects can be cumbersome, especially when dealing with complex data structures like linked lists or recursive arrays. PHP iterators simplify this process, making it easier to tr…
By Saravana Sai | Nov 30, 2024
Set Up Laravel & Node.js Dev Environment on Windows with WSL 2 (Ubuntu 24)
In this guide, we'll walk through setting up a robust Laravel and Node.js development environment using Laravel Valet on Windows with WSL 2 Linux distro Ubuntu 24.
Prerequisites
Before starting the setup, ensure you have admin access and that Ubuntu …
By Sohaib Ilyas | Nov 30, 2024
Set Up Laravel & Node.js Development Environment on Windows with WSL 2 (Ubuntu 24)
In this guide, we'll walk through setting up a robust Laravel and Node.js development environment similar to Laravel Valet on Windows with WSL 2 Linux distro Ubuntu 24.
Prerequisites
Before starting the setup, ensure you have admin access and that Ub…
By Sohaib Ilyas | Nov 30, 2024
Comprehensive Guidebooks for PHP and Algorithm Learning
To learn PHP and algorithms, here are some book recommendations that cover everything from programming fundamentals to advanced algorithms, always with a practical approach focused on application in web development.
For PHP Fundamentals
PHP & MySQL:…
By Antonio Silva | Nov 30, 2024
How to Create Roles and Permissions in Laravel with Filament Shield
In this guide, we'll continue building on our Laravel post project by implementing roles and permissions using the Filament Shield package.
Step 1: Install the Filament Shield Package
Run the following command to install the package:
composer require…
By Programmer Telo | Dec 01, 2024
Fixing Security Misconfigurations in Laravel: A Developer’s Guide
Security misconfiguration is one of the most common vulnerabilities affecting web applications, including those built with Laravel. Misconfigurations can lead to unauthorized access, sensitive data leaks, and potential system takeovers. This guide ex…
By Pentest_Testing_Corp | Dec 01, 2024
#Mastering Laravel
Limit the number of feature flag checks
You'll thank yourself later
By Joel Clermont | Nov 25, 2024
When would you use an enum?
A very useful addition to PHP
By Joel Clermont | Nov 26, 2024
Where should that business logic go?
It's worth a discussion
By Joel Clermont | Nov 27, 2024
Sometimes it's okay to do it the hard way
Not always even that hard
By Joel Clermont | Nov 28, 2024
Feature flags are meant to be temporary
So make them easy to remove
By Joel Clermont | Nov 29, 2024
#Dev.to
Laravel livewire resources
#laravel #livewire #webdev #javascript
By Sospeter Mong'are | Nov 25, 2024
Laravel 11: Allowed memory size of 134217728 bytes exhausted (tried to allocate 23085056 bytes)
#laravel #apache #php #memory
By Awan | Nov 25, 2024
773. Sliding Puzzle
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 25, 2024
AI and PHP 8 – A Powerful Combination
#php #ai #webdev
By kapil kalsan | Nov 25, 2024
The anatomy of smart search in Joomla 5 Part 1: Introduction.
#joomla #php #search #smartsearch
By Sergey Tolkachyov | Nov 25, 2024
Laravel SPA: A Complete Guide to Building Single Page Applications
#laravel #vue #webdev #frontend
By MD ARIFUL HAQUE | Nov 25, 2024
Efficiently Rendering Base64 Images in Laravel PDFs with DomPDF
#laravel #php #pdf #dompdf
By Bilal Haidar | Nov 25, 2024
Top Platforms to Hire Remote PHP Developers in 2025
#webdev #php #laravel
By Frank Nelson | Nov 25, 2024
Another Way to Structure your Symfony Project
#php #symfony #architecture #ddd
By Etienne Lebarillier | Nov 25, 2024
Laravel Custom Query Builders Over Scopes
#laravel #php #database
By Oussama Mater | Nov 26, 2024
AI Color Palette Generator
#ai #openai #laravel #webdev
By Job | Nov 26, 2024
How to Use Vultr Object Storage with Laravel (S3-Compatible)
#laravel #php #s3 #vultr
By Lucas Lima | Nov 25, 2024
Laravel CI/CD Pipeline: Easy GitHub, Jenkins, and Docker Step-by-Step Guide
#laravel #jenkins #docker #automation
By MD ARIFUL HAQUE | Nov 25, 2024
Switch php version on windows with one command
#tricks #terminal #windows #php
By Driss | Nov 25, 2024
Automate Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents() with simple Trait
#symfony #php
By Martin Jirasek | Nov 25, 2024
Setting Up A LAMP Sta
#mongodb #linux #aws #php
By Abisola Adesegun | Nov 25, 2024
I finally tried Pest for PHP & Laravel, then made the switch
#php #laravel #pestphp
By Quỳnh Nguyễn | Nov 26, 2024
Prevent Sensitive Data Exposure in Laravel: Best Practices
#cybersecurity #vulnerabilities #laravel
By Pentest Testing Corp | Nov 26, 2024
What is CloudLinux? An Overview of the Leading Operating System for Web Hosting
#php #javascript #programming #beginners
By MD. Feraj Mukatadir | Nov 26, 2024
2924. Find Champion II
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 26, 2024
PHP: Practical ways to escape from the hell of Dates
#php #programming #beginners
By spO0q | Nov 26, 2024
Please comment on installation instructions given in README of my open source project
#opensource #laravel #livewire
By Operating IT | Nov 26, 2024
🚀 My CRM Journey(Day-2): Admin Panel, jQuery Integration & Customer Management 🌟
#webdev #php #mysql #productivity
By Ashish prajapati | Nov 26, 2024
🚀 Building a CRM in PHP & MySQL: My Final Year Project Journey 🎓
#php #webdev #mysql #productivity
By Ashish prajapati | Nov 25, 2024
Securing PHP Web Applications: Hands-On Practices
#php #security #webdev #cybersecurity
By MD ARIFUL HAQUE | Nov 26, 2024
Mastering Laravel Naming Conventions: Clean and Maintainable Code
#laravel #php #webdev #programming
By MD ARIFUL HAQUE | Nov 27, 2024
Debugging Laravel Routes in Testing
#laravel #pestphp #unittest
By Nasrul Hazim Bin Mohamad | Nov 27, 2024
3243. Shortest Distance After Road Addition Queries I
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 27, 2024
Working with Carbons Closest & Farthest in Laravel | How to | Tutorial | Quick Win Wednesday #QWW
#laravel #beginners #tutorial #php
By Bert De Swaef | Nov 27, 2024
Set Up PHP 8 Environment Using Docker with a Custom Dockerfile
#devops #webdev #php #laravel
By Hòa Nguyễn Coder | Nov 27, 2024
Como poner PHP en el path con comandos del terminal en Windows 11
#php #windows11 #laravel
By Diego | Nov 28, 2024
Set Default Values in Laravel with mergeIfMissing: Real-Life Examples
#tutorial #opensource #laravel #productivity
By Akande Joshua | Nov 28, 2024
Introducing Laravel Nightwatch: A New Age of Monitoring Your Laravel Apps ✨
#webdev #php #laravel #programming
By HichemTech | Nov 28, 2024
2290. Minimum Obstacle Removal to Reach Corner
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 28, 2024
PHP is a Single-Threaded Language, So How Does Laravel Handle Queue Jobs Asynchronously?
#laravel #php #webdev #programming
By Mahfuzur Rahman | Nov 28, 2024
Understanding the Distinct Roles of Software Developers and Software Architects
#php #webdev #programming
By Matt Lantz | Nov 28, 2024
PHP Logger with Email Notifications | Error Tracking in PHP
#php #webdev #logger #email
By MD ARIFUL HAQUE | Nov 28, 2024
🚀 Day 4: Lead & Opportunities Module and Analytics with Dynamic Charts
#webdev #php #mysql #developer
By Ashish prajapati | Nov 28, 2024
Understanding Laravel Cashier's Core Traits: A Deep Dive
#laravel #php #stripe #ecommerce
By Bilal Haidar | Nov 29, 2024
Creating a Mini Blog API with Lithe and Eloquent
#php #laravel #eloquent #lithe
By Lithe | Nov 29, 2024
Criando uma API de Mini Blog com Lithe e Eloquent
#php #laravel #eloquent #lithe
By Lithe | Nov 29, 2024
The overlooked new php 8.4 features
#php
By david duymelinck | Nov 29, 2024
Why you should upgrade to PHP 8.4 (or at least PHP 8.x)
#php #development #webdev #why
By Roberto B. | Nov 29, 2024
Building Dynamic and Maintainable Menus in Laravel
#laravel #php #menu
By Nasrul Hazim Bin Mohamad | Nov 29, 2024
Docker Compose Demo: Running Multiple Services with Two Domains on Localhost
#docker #webdev #nginx #php
By Hòa Nguyễn Coder | Nov 29, 2024
2577. Minimum Time to Visit a Cell In a Grid
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 29, 2024
Converting a Laravel Blade Application to Use Livewire
#livewire #laravel #programming #beginners
By Sospeter Mong'are | Nov 29, 2024
Nova's Sneaky Redirect: A Quick Fix
#laravel #laravelnova #php #webdev
By Helfull | Nov 30, 2024
PHP, Classes and Objects
#php #oop #programming #beginners
By Harsh Mishra | Nov 30, 2024
Turning Ideas into Reality: My Journey Through Side Projects
#sideprojects #webdev #laravel #startup
By Jonathan Clegg | Nov 30, 2024
What is PHP Fiber? Does PHP Fiber Really Give You Asynchronous Execution?
#php #programming #laravel #webdev
By Mahfuzur Rahman | Nov 30, 2024
PHP Streams: Efficient Data Handling for Large Files
#php #webdev #performance #csv
By MD ARIFUL HAQUE | Nov 29, 2024
Factory Method Design Pattern Explained with PHP Examples
#php #webdev #laravel #designpatterns
By Hòa Nguyễn Coder | Nov 30, 2024
🚀 Generate Dynamic PDFs in Laravel with DomPDF
#laravel #php #pdf #webdev
By A0mineTV | Nov 30, 2024
Creating a CLI Application With Laravel and Docker
#laravel #docker #php #webdev
By Aaron Reddix | Nov 30, 2024
Beginner's Guide to PHP Form Handling with Cookies
#php #webdev #programming #beginners
By Harsh Mishra | Nov 30, 2024
Beginner's Guide to PHP Form Handling with Sessions
#php #webdev #programming #beginners
By Harsh Mishra | Nov 30, 2024
2097. Valid Arrangement of Pairs
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 30, 2024
🚀 Day 5: Sales Tracking Module in CRM
#webdev #php #mysql #tutorial
By Ashish prajapati | Nov 30, 2024
Symfony Station Communiqué - 29 November 2024. A look at Symfony, Drupal, PHP, and programming news!
#symfony #drupal #php #joomla
By Reuben Walker, Jr. | Nov 30, 2024
Laravel Under The Hood – Extending the framework
#webdev #laravel #php #designpatterns
By Oussama Mater | Dec 01, 2024
Deploying Multiple PHP Applications Using AWS Elastic Beanstalk with a Standalone ALB
#aws #elasticbeanstalk #loadbalancer #php
By Ahmed Salem | Dec 01, 2024
Comprehensive Guidebooks for PHP and Algorithm Learning
#php #webdev #beginners #learning
By Antonio Silva | Dec 01, 2024
1346. Check If N and Its Double Exist
#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Dec 01, 2024
Fix Security Misconfigurations in Laravel for Safer Web Apps
#cybersecurity #vulnerabilities #laravel #security
By Pentest Testing Corp | Dec 01, 2024
Laravel: Convert .htaccess File to IIS web.config Configuration
#laravel #webconfig #iiswindows
By yysfyn | Dec 01, 2024
Boost your workflow with Easy Model v1.1.2 💼
#php #laravel #opensource #backend
By Mahmoud Ramadan | Dec 01, 2024
PHP Performance Optimization
#php #backend
By Parzival | Dec 01, 2024
#Amit Merchant
Using Backed Enums with Bus Chain's onQueue Method
Learn how to streamline your queue handling by directly using backed enums with Laravel's Bus chain onQueue method, removing the need for explicit value access.Basic UsageHere's the clean, new way to use enums with queue chains:// The new, cleaner wayBus::chain($jobs) -&
By Harris Raftopoulos | Nov 25, 2024
Customizing Error Pages in Laravel
Learn how to create and customize error pages for different HTTP status codes in Laravel, making your application's error handling both user-friendly and professional.Basic Error Page CreationCreate custom error pages by adding Blade templates in the errors directory:// resources/views/errors/404.blade.php<h2&
By Harris Raftopoulos | Nov 27, 2024
Session Flash Data in Laravel: Managing Temporary Messages
Learn how to effectively manage temporary session data in Laravel using flash methods, perfect for status messages, alerts, and temporary user notifications.Basic Flash DataStore data for the next request:$request->session()->flash('status', 'Task was successful!');Extended Flash Data Methods// Keep
By Harris Raftopoulos | Nov 28, 2024
HTTP Response Shorthands in Laravel: Simplified Fakes
Want to write cleaner HTTP test mocks? Laravel's new shorthand syntax for faking HTTP responses cuts down the boilerplate and makes your tests more readable. Let's dive into these elegant shortcuts.Basic Usageuse Illuminate\Support\Facades\Http;Http::fake([ 'google.com' => '
By Harris Raftopoulos | Nov 29, 2024
#IT Solution Stuff
Laravel Breeze Login with Google Auth Example
In this post, i will show you how to login with google account with laravel breeze. we will install laravel breeze with alpine js and add google auth.
As we know, social media becomes more and more p…..
#Laravel
By Hardik Savani | Nov 25, 2024
PHP Laravel Generate Apple Wallet Pass Example
In this tutorial, I will show you how to create apple wallet pass in php laravel application. Using the Apple Wallet API in Laravel, we can create various types of passes, including gift cards, coupon…..
#Laravel
By Hardik Savani | Nov 28, 2024
#Harris Raftopoulos
Using non-conventional columns in Laravel's Migrations
By Amit Merchant | Nov 25, 2024
#Lara Info
Laravel Left Join with Multiple Conditions
#Laravel
By Saim Ansari | Nov 26, 2024