Table of Contents


#Laravel News

Laravel Solr

Laravel Solr is a package that provides a seamless integration with Apache Solr, allowing Laravel developers to efficiently utilize Solr’s powerful se…
#Laravel Packages
By Yannick Lyn Fatt | Nov 05, 2024


Build your slide deck in Laravel with Simple Slides

Simple Slides is a responsive and text-first presentation tool that engages your audience.
#Laravel Packages
By Eric L. Barnes | Nov 07, 2024


Laravel on any Developer Machine with Gitpod

Here is my unbiased view of my experience as a developer when setting up a Gitpod Workspace for coding on a PHP and Laravel application
#Sponsor
By Benjamen Pyle | Nov 09, 2024



#Freek Dev

Australia/Lord_Howe is the weirdest timezone

Here are some examples of weird timezones
By | Nov 04, 2024


Embedding Blade inside of Markdown content

Here's a neat solution by Ryan Chandler
By | Nov 05, 2024


The magic behind Laravel's new defer() helper

Here's how Laravel's defer() function, which was introduced a few months ago, works behind the scenes.
By | Nov 06, 2024


Using Ray with your Pest tests

By Spatie | Nov 07, 2024



#Laravel io

Laravel Under The Hood – A Little Bit of Macros

Hello 👋
How often have you wished for a method that doesn't exist on collections or string helpers?…
#Laravel #Architecture
By oussamamater | Nov 04, 2024



#Made with Laravel

Wire Elements Modal – Livewire Modal Component

"Wire Elements Modal is a Livewire component that provides you with a modal that supports multiple child modals while maintaining state.
With the Modal component, you can turn any of your Livewire components into a modal and call the component into view throughout your entire application with just one line of code.
You can control behavior for every modal: Close on escape, trap input focus, removing state on close or closing the modal when clicking the backdrop."
#UI Components
By | Nov 04, 2024


QualityHive – Website Feedback & Task Management Tool

"Harmonise your agency's quality control, embrace efficiency and streamline web development / QA workflow.
✨ Lighten the load and look forward to feedback ✨ QualityHive is used by a variety of different users, mainly web design / development agencies and website owners.
Wave goodbye to logging tasks in not-for-purpose, expensive platforms. Embrace the efficiency of visual feedback whilst raising screenshotted and documented tasks from as little as 3.8 seconds!
Here's just a few of our features we think you'd like to know about:

🪄 Device information automatically captured (OS, Dimensions, Language)
📽️ Easy video recording support
📷 Instant screenshots
🧑‍💻 Javascript console errors logged against tasks
🖊️ Built-in screenshot annotation support

Vue.js, Ziggy, Tailwind and Laravel have been used following best practices to craft the QualityHive platform from scratch."
#DevTools #App
By | Nov 05, 2024


Filament Simple Alert – Alert Component for Filament

"filament-simple-alert offers a straightforward and easy-to-use alert component for your Filament application.
It allows you to quickly implement customizable alert messages, enhancing the user experience by providing clear and concise notifications."
#Plugins
By | Nov 09, 2024


Laravel Users – User Management Package

"Laravel Users is a users management CRUD package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding.
Easily start creating, updating, editing, and deleting users in minutes with minimal setup required."
#Utility
By | Nov 09, 2024



#Hashnode

Real-World Laravel Apps: Security Failures and Successes

Introduction
Laravel is a well-known PHP framework. Some of the factors that make it popular include its elegant syntax, documentation, community support, and powerful features. It also happens to be one of the most secure frameworks. However, like a…
By Hire Remote Developers | Nov 04, 2024


Best Practices for Writing API Documentation 📚

Best Practices for Writing API Documentation
API documentation is essential to an API's usability and success. Well-documented APIs significantly improve the developer experience, accelerate adoption, and cultivate a strong developer community. On th…
By Coco Min | Nov 04, 2024


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 is, and what kind of projects fits its architecture.
The pec…
By Valerio | Nov 04, 2024


Fixing "Blocked by CORS Policy" Errors in Vue.js and Laravel: A Practical Guide

Have you ever run into the dreaded “CORS Policy” error when connecting your Vue.js frontend with a Laravel backend? If you’re seeing messages like:

“The request client is not a secure context and the resource is in a more-private address space…”

…y…
By Shital Mainali | Nov 05, 2024


Laravel'de Polymorphic İlişkiler: Bayi ve Müşteri Ödeme Kayıtları

Merhaba! Bugün, Laravel'de polymorphic ilişkilerin nasıl kullanılacağını ve özellikle bayi ve müşteri ödeme kayıtları üzerinde nasıl uygulanacağını inceleyeceğiz. Polymorphic ilişkiler, farklı model türlerinin birbiriyle ilişkili olmasını sağlayan gü…
By Onur Evren | Nov 05, 2024


10 Best Postman Alternatives in 2024 | Free & Open Source Tools

10 Best Postman Alternatives in 2024 | Free & Open Source Tools
In this article, we’ll dive deep into the top alternatives to Postman, exploring their features, advantages, and drawbacks. By the end, you'll have a solid understanding of these tools, …
By Issy | Nov 05, 2024


Mastering Server-Sent Events (SSE) with Python and Go for Real-Time Data Streaming

Mastering Server-Sent Events (SSE) with Python and Go for Real-Time Data Streaming 🚀
Understanding Server-Sent Events (SSE): Real-Time Data Streaming from Server to Client 🕒📡
In today's interactive web applications, real-time data updates play a c…
By Xin | Nov 05, 2024


PHP Cheat Sheet

Here's a PHP cheat sheet covering the essentials:

Basic Syntax

Echo / Print:
echo "Hello, World!";
print "Hello, World!";

Variables:
$variable = "Hello!";

Comments:
// Single-line comment
# Single-line comment
/* Multi-line
co…
By David Gostin | Nov 05, 2024


Understanding Laravel Queues: A Beginner's Guide

What is a Queue?
In a typical web application, some tasks, like sending an email or processing large amounts of data, can take time. If these tasks run directly within the request lifecycle, they can slow down the application and result in a poor use…
By Anik Kumar Nandi | Nov 05, 2024


Introduction to PHP Performance Monitoring

PHP Performance Monitoring
As a PHP developer, ensuring the performance and reliability of your applications is crucial, especially in high-traffic or resource-intensive environments. Performance monitoring allows you to identify bottlenecks, optimiz…
By Sohag Hasan | Nov 05, 2024


Distributed Caching Architectures in Laravel: A Beginner's Guide

Distributed Caching Architectures in Laravel
Introduction
Imagine you're preparing breakfast every morning. Instead of taking out all the ingredients from different cabinets each time, you keep frequently used items like coffee, sugar, and bread on t…
By Sohag Hasan | Nov 05, 2024


Understanding PHP Caching: A Comprehensive Guide for Beginners

Caching in PHP and Laravel
Introduction
Imagine walking to your kitchen every time you need a glass of water versus keeping a water bottle at your desk. That's essentially what caching is in programming – keeping frequently used data closer for quick…
By Sohag Hasan | Nov 05, 2024


Memory and Resource Management in PHP: A Beginner's Guide

Memory and Resource Management in PHP
Introduction
Just like managing household expenses and organizing your closet, managing memory and resources in PHP is crucial for maintaining a healthy application. Imagine your computer's memory as your home – …
By Sohag Hasan | Nov 05, 2024


Understanding PHP Garbage Collection: From Basics to Advanced Optimization

PHP Garbage Collection
Have you ever wondered what happens to the leftovers from your dinner party? Just like we clean up after a gathering, PHP needs to clean up unused variables and objects from memory. This process is called Garbage Collection (GC…
By Sohag Hasan | Nov 05, 2024


Understanding Concurrency in PHP with Laravel: A Beginner's Guide

Concurrency in PHP with Laravel
Concurrency is an important concept in software development, especially when building scalable and high-performance applications. In simple terms, concurrency allows multiple tasks to run at the same time or in overlap…
By Sohag Hasan | Nov 05, 2024


Understanding Behavioral Design Patterns in PHP: A Beginner's Guide

Behavioral Design Patterns in PHP
Introduction 🎯
Imagine conducting an orchestra where each musician knows exactly when to play their part. Behavioral design patterns are like musical scores – they define how objects communicate and interact with ea…
By Sohag Hasan | Nov 05, 2024


Structural Design Patterns in PHP: Real-World Examples

Understanding Structural Design Patterns in PHP: A Practical Guide
Introduction 🎯
Ever walked into a LEGO store? You'll see individual bricks that can be assembled into amazing structures. Structural design patterns in PHP work similarly – they're b…
By Sohag Hasan | Nov 05, 2024


Laravel Distributed Task Scheduling ve Supervisor Yönetimi

Laravel uygulamalarında düzenli olarak çalışan görevlerin yönetimi, projelerin sağlıklı ve verimli bir şekilde çalışmasını sağlar. Özellikle yüksek trafikli ve büyük ölçekli uygulamalarda, tek bir sunucu üzerinde çalışan görevler yetersiz kalabilir. …
By Onur Evren | Nov 06, 2024


Install PHP, MySQL and PHPMyAdmin in Ubuntu VirtualBox

To install PHP, MySQL, and phpMyAdmin on Xubuntu running in VirtualBox, follow these steps:
Step 1: Update Package Repository
Open a terminal and update your package list:
sudo apt update
sudo apt upgrade

Step 2: Install Apache Web Server
You need a…
By Mohamad Mahmood | Nov 06, 2024


Top Ten Programming Languages to Learn Before 2025

Essential Programming Languages for New Web Developers to Master
Introduction
The world of web development is constantly evolving, and staying up to date with the most relevant programming languages is key to advancing your career. As we approach 202…
By Opara Blessing | Nov 06, 2024


How to Implement Search and Filtering in APIs🦉

When you build an API, one of the most useful features you can add is search and filtering. Imagine you’re building an API for a library of books — users might want to find books by a specific author, books published after a certain year, or books th…
By Issy | Nov 07, 2024


Working Offline? EchoAPI Doesn't Need Constant Internet Like Postman

Working Offline? EchoAPI Doesn't Need Constant Internet Like Postman
As a developer, I’ve always relied on Postman to test and debug APIs. It provided a robust platform to create, manage, and execute API requests easily. However, as Postman evolved, …
By Coco Min | Nov 07, 2024


Setting Up Your Web Server in Minutes: A Beginner's Guide

Setting Up Your Web Server in Minutes
TL;DR: Want to set up a complete web server for your Laravel project without the headache? Just copy-paste a single command, answer a few simple questions, and you're done! It's like having a tech expert do all t…
By Sohag Hasan | Nov 08, 2024


What is Livewire?

Livewire is a full-stack framework for Laravel that allows developers to build dynamic and interactive user interfaces without needing to write a lot of JavaScript. It works by combining server-side rendering with client-side interactions using AJAX …
By Nikhil Akki | Nov 08, 2024


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 your backend.
Laravel offers a complete and flexible authenti…
By Valerio | Nov 08, 2024


Common API Design Mistakes and How to Avoid Them

Building an API is like laying the foundation of a house: if you get it wrong, everything else on top of it is shaky. Whether you're new to API design or you've been around the block a few times, there are common mistakes that many developers make wh…
By Bobo | Nov 08, 2024


Beginner Of PHP

Introduction to PHP
Definition and explanation of PHP
History and evolution of PHP
Importance of PHP in web development
Setting Up Your PHP Environment
Requirements for running PHP
Installing PHP on different operating systems (Windows, macOS, Linux)…
By Kunal Wadile | Nov 08, 2024


Understanding Code Smells in PHP and Laravel: A Beginner's Guide

Code Smells in PHP and Laravel
Ever walked into a room and immediately noticed something was off? Maybe it was a faint burning smell from the kitchen or the sound of a washing machine that didn't quite seem right. These warning signs in our daily liv…
By Sohag Hasan | Nov 09, 2024


Understanding Laravel Macros: A Beginner's Guide

Understanding Laravel Macros
Have you ever wished you could add your own special features to Laravel's built-in functions? That's exactly what Laravel macros let you do! Think of macros as custom add-ons that enhance Laravel's capabilities without me…
By Sohag Hasan | Nov 09, 2024


Laravel Best Practices

Laravel Best Practices
1. Database & Eloquent Best Practices
1.1 Optimize Database Queries
// ❌ Bad: N+1 Query Problem
@foreach (Post::all() as $post)
{{ $post->category->name }}
@endforeach

// ✅ Good: Eager Loading
$posts = Post::with('category…
By Sohag Hasan | Nov 09, 2024


My Journey to Passing the CAPenX Certification: A Guide for Aspiring Expert-Level AppSec Pentesters

Introduction: As a seasoned cybersecurity researcher and penetration tester, I am constantly on the lookout for certifications that sharpen my skills and keep me at the forefront of web application security. The Certified AppSec Pentesting Expert (CA…
By Sergio Medeiros | Nov 10, 2024



#Mastering Laravel

Should we use a JSON field for this?

Database design is important
By Joel Clermont | Nov 04, 2024


Don't forget this when writing mock assertions

Or it might pass when it shouldn't
By Joel Clermont | Nov 05, 2024


Always use named routes

Future developers will thank you
By Joel Clermont | Nov 06, 2024


What about the action helper?

Better than named routes?
By Joel Clermont | Nov 07, 2024


Get rid of the squiggles

Don't become numb to IDE noise
By Joel Clermont | Nov 08, 2024



#Securing Laravel

Security Tip: Ensure Your App Requires HTTPS!

[Tip #96] Encryption is essential, but you can't just install a certificate and go about your day… Secure those cookies, redirect from HTTP, and HSTS FTW! 🎉
By Stephen Rees-Carter | Nov 08, 2024



#Dev.to

Essential Laravel Tips form and for Entry-Level Developers 🚀

#webdev #beginners #php #laravel
By Harold Defree | Nov 04, 2024


Symfony Station Communiqué — 01 November 2024. A look at Symfony, Drupal, PHP, and programming news!

#symfony #drupal #php #typo3
By Reuben Walker, Jr. | Nov 04, 2024


Laravel 11 Google Recaptcha V3 Validation Tutorial

#webdev #tutorial #laravel #php
By Saddam Hossain | Nov 04, 2024


Laravel 11 Display Image from Storage Folder Example

#webdev #laravel #php #tutorial
By Saddam Hossain | Nov 04, 2024


How to Install Bootstrap 5 in Laravel 11 with Vite?

#bootstrap #laravel #webdev #tutorial
By Saddam Hossain | Nov 04, 2024


Alpine.js Tips & Tricks for and from and entry level Laravel Developers 🚀

#javascript #webdev #beginners #laravel
By Harold Defree | Nov 04, 2024


Protecting Your Application with CSRF in Lithe

#php #csrf #lithe #security
By Lithe | Nov 04, 2024


Protegendo sua Aplicação com CSRF no Lithe

#php #csrf #lithe
By Lithe | Nov 04, 2024


Integrating the JWT Middleware in Lithe

#authentication #php #lithe #jwt
By Lithe | Nov 04, 2024


How to Generate Pdf in PHP CodeIgniter 4 using *dompdf*

#codeigniter4 #ci4 #php #dompdf
By TAIO Sylvain | Nov 04, 2024


Integrando Autenticação JWT no Lithe

#php #jwt #lithe #authentication
By Lithe | Nov 04, 2024


Integrating PHP with Front-End Technologies: A Comprehensive Guide

#php #webdev #beginners #programming
By NeoTechy | Nov 04, 2024


Laravel Under The Hood – A Little Bit of Macros

#webdev #laravel #php
By Oussama Mater | Nov 04, 2024


Lithe Hash: A Robust Module for Secure Password Hashing

#php #security #hashing #lithe
By Lithe | Nov 05, 2024


Lithe Hash: Um Módulo Robusto para Hashing Seguro de Senhas

#php #lithe #hashing
By Lithe | Nov 05, 2024


Lithe Crypt: Simplifying Encryption in PHP Applications

#php #lithe #cryptography #webdev
By Lithe | Nov 05, 2024


Lithe Crypt: Simplificando a Criptografia em Aplicações PHP

#php #lithe #webdev #criptografia
By Lithe | Nov 05, 2024


Api Hub

#beginners #webdev #api #laravel
By Acaplah | Nov 05, 2024


Lithe Mail: Simplifying Email Sending in PHP Applications

#php #webdev #lithe #beginners
By Lithe | Nov 05, 2024


Inertia.js with Laravel and React: A Guide for Entry-Level Developers 🚀

#beginners #react #laravel #javascript
By Harold Defree | Nov 05, 2024


Lithe Mail: Simplificando o Envio de Emails em Aplicações PHP

#php #webdev #lithe
By Lithe | Nov 05, 2024


Laravel AI service with support for multiple LLMs

#webdev #laravel #ai #tutorial
By Valerio | Nov 04, 2024


Improving the Performance of Your PHP Application with Lithe Cache

#php #webdev #caching #lithe
By Lithe | Nov 05, 2024


Melhorando o Desempenho da Sua Aplicação PHP com Lithe Cache

#php #lithe #caching #webdev
By Lithe | Nov 05, 2024


3163. String Compression III

#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 04, 2024


Why Every Developer Should Embrace DevOps 🚀

#devops #kubernetes #softwaredevelopment #php
By Saif Uddin | Nov 05, 2024


DecenPHP

#php #decentralized #web3
By Aiodrix | Nov 05, 2024


13 PHP Website Examples That Prove PHP Still Dominates

#php #phpdevelopment #phpwebsiteexamples #phpwebsites
By Dhruvil Joshi | Nov 05, 2024


Lloyds Payment Card Integration Using PHP: Cardnet Hosted Payment Page (Connect Solution)

#lloyds #php #cardnet
By Godwin Incrisz | Nov 05, 2024


Get The Most From Blade: Laravel's Templating Engine

#webdev #php #laravel #beginners
By varzoeaa | Nov 05, 2024


Kong Admin API for PHP: A Framework-Agnostic Client for Seamless Kong Gateway Management

#api #apigateway #php
By Nasrul Hazim Bin Mohamad | Nov 05, 2024


2914. Minimum Number of Changes to Make Binary String Beautiful

#php #algorithms #leetcode #programming
By MD ARIFUL HAQUE | Nov 05, 2024


Mastering Code Quality in Laravel: Pint with Git Hooks and Docker

#laravel #docker #hooks #pint
By Paul Isaris | Nov 05, 2024


Laravel VS Symfony: The PHP Framework Showdown

#webdev #php #laravel #symfony
By varzoeaa | Nov 05, 2024


API Token Authentication

#laravel #php #api #authentication
By Daichi Izushi | Nov 06, 2024


Feedback Glow – Canny alternative for indie makers and small teams

#nextjs #laravel #sideprojects #saas
By Nguyen Xuan hoa | Nov 06, 2024


ionCube Loader in Docker

#php #docker #devops #cicd
By Julian Finkler | Nov 06, 2024


Building Your First WhatsApp Bot in PHP: A Beginner's Guide to Code and Integration

#php #beginners #whatsapp #api
By WhatsApp API for developers | Nov 06, 2024


3011. Find if Array Can Be Sorted

#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 06, 2024


SPA Development with Filamentphp

#php #laravel #developer #webdev
By Farhad Rahmani | Nov 07, 2024


How to Include JavaScript in Laravel 11: A Step-by-Step Guide for All Scenarios

#laravel #php #javascript #webdev
By websilvercraft | Nov 07, 2024


Building Real-Time Chat with Laravel Reverb and Vue 3 – Step-by-Step Tutorial

#laravel #vue #php #javascript
By Harish Kumar | Nov 07, 2024


Enviar correos electrónicos con Mailtrap y Laravel

#spanish #webdev #laravel #tutorial
By DowarDev | Nov 07, 2024


Laravel Nightwatch: The Future of Laravel Application Monitoring Revealed at Laracon AU

#news #laravel #php #discuss
By CodeWithCaen | Nov 07, 2024


hypertrack .com

#api #reactnative #laravel #mysql
By Yash Singh | Nov 07, 2024


Laravel Observers: The Silent Ninjas of Your Application Lifecycle

#laravel #php
By Dharmik Bhadkoliya | Nov 06, 2024


Implementando uma Tabela Hash em PHP para Armazenar Dados de Artilheiros do Brasileirão

#php #algorithms
By lauriely lourenço | Nov 07, 2024


2275. Largest Combination With Bitwise AND Greater Than Zero

#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 07, 2024


Introducing NexaPHP: A Lightweight MVC PHP Framework

#webdev #programming #php #tutorial
By Ravi Kishan | Nov 07, 2024


Nginx force http to https On 443 https Port

#nginx #php
By Teddy Zugana | Nov 08, 2024


Laravel Mix vs Vite: Why did Laravel Transitioned to Vite

#webdev #laravel #php #performance
By varzoeaa | Nov 08, 2024


Organizing Your Routes Modularly and Automatically in Lithe

#php #webdev #lithe #routing
By Lithe | Nov 09, 2024


Laravel Application Security

#webdev #php #laravel #security
By Kachkol Asa | Nov 08, 2024


Organizando Suas Rotas de Forma Modular e Automática no Lithe

#php #webdev #lithe #routing
By Lithe | Nov 09, 2024


It's launch day! 🚀

#php #laravel #opensource #vscode
By Mahmoud Ramadan | Nov 08, 2024


1829. Maximum XOR for Each Query

#php #leetcode #algorithms #programming
By MD ARIFUL HAQUE | Nov 08, 2024


PHP opcode – Improve application performance without changing your code

#php #webdev #tutorial #programming
By Valerio | Nov 08, 2024


Learning PHP and MySQL—Is Laravel the Next Step?

#webdev #fullstackdevelopment #php #mysql
By SALMAN_DEV | Nov 09, 2024


Unleash ServBay’s Power! Managing Local DNS Records

#webdev #productivity #php #node
By ServBay | Nov 09, 2024


How to Generate and Display Swagger (OpenAPI) Documentation for Your Laravel API

#api #laravel #webdev #openapi
By Sospeter Mong'are | Nov 09, 2024


How Lithe Makes Web Application Development in PHP Faster with Less Code

#programming #webdev #php #lithe
By Lithe | Nov 09, 2024


Como o Lithe Facilita o Desenvolvimento de Aplicações Web em PHP com Menos Código

#programming #php #webdev #lithe
By Lithe | Nov 09, 2024


From Express.js to PHP: How Lithe Brings the Minimalist Development Experience to the PHP World

#php #javascript #lithe #express
By Lithe | Nov 09, 2024


Do Express.js para o PHP: Como o Lithe traz a experiência de desenvolvimento minimalista para o mundo PHP

#php #javascript #express #lithe
By Lithe | Nov 09, 2024


3133. Minimum Array End

#php #algorithms #leetcode #programming
By MD ARIFUL HAQUE | Nov 09, 2024


Working with multiple image select in Laravel Livewire

#php #laravel #livewire #alpine
By Ridwan Kasim | Nov 10, 2024


Creating focused domain applications. A Symfony approach (Managing validation errors)

#php #symfony #ddd #cleancode
By Nacho Colomina Torregrosa | Nov 10, 2024


Throwing Success or Failure Notifications Manually in FilamentPHP Actions

#laravel #filamentphp
By Süleyman Özgür Özarpacı | Nov 10, 2024


Unleash ServBay’s Power! Managing Local Hosts File

#webdev #programming #php #node
By ServBay | Nov 10, 2024


That Strange PHP Code in Frameworks and CMSs

#php #wordpress #symfony #laravel
By Manuel Canga | Nov 10, 2024


Ese extraño código PHP en frameworks y CMS

#spanish #php #wordpress #laravel
By Manuel Canga | Nov 10, 2024


Implementing a DDD Use Case in PHP

#php #architecture #ddd
By sebk69 | Nov 10, 2024


ServBay 1.6.0 Released: Built-in Mail Server, Mailpit Integration

#php #productivity #webdev #programming
By ServBay | Nov 10, 2024


Pyro Sense – An early fire detection solution based on a Meta-OS!

#greyos #javascript #php #cloud
By George Delaportas (ViR4X) | Nov 10, 2024



#Amit Merchant

Streamline HTTP Response Handling with Laravel's resource Method

Ever wrestled with streams in Laravel's HTTP Client? The new resource() method makes handling stream responses incredibly simple! Let's explore this handy improvement.The Old vs New WayThe traditional approach was quite verbose:// Old wayuse GuzzleHttpPsr7StreamWrapper;$response = Http::get($imageUrl);Storage::disk(
By Harris Raftopoulos | Nov 04, 2024


Cleaner Test Header Management with Laravel's withoutHeaders

Need to remove multiple headers in your Laravel tests? The new withoutHeaders method lets you do it in one clean shot! Let's explore this handy testing improvement.The Old vs New WayPreviously, you had to chain multiple method calls:// Old way$this->withoutHeader('name'
By Harris Raftopoulos | Nov 05, 2024


Command Dependency Injection in Laravel: A Closer Look at Closure Commands

Need to inject dependencies into your Artisan command closures? Laravel makes it seamless! Let's explore how to leverage dependency injection in your command closures.Basic UsageHere's how you can inject dependencies along with your command arguments:use AppModelsUser;use AppSupportDripEmailer;Artisan:
By Harris Raftopoulos | Nov 06, 2024


Mastering Command Signatures in Laravel: A Complete Guide

Need to create user-friendly console commands? Laravel's signature syntax makes it a breeze to define arguments and options! Let's explore this powerful feature.Basic ArgumentsThe simplest form uses required arguments:protected $signature = 'mail:send {user}';You can make arguments optional or set defaults:
By Harris Raftopoulos | Nov 07, 2024


Quick Command Options in Laravel: Mastering Shortcuts

Want to make your Artisan commands more user-friendly? Laravel's option shortcuts let you create intuitive, quick-to-type command options! Let's explore this handy feature.Defining ShortcutsHere's how to add a shortcut to your option:protected $signature = 'mail:send {user} {–Q|queue}';The
By Harris Raftopoulos | Nov 08, 2024


Handling Multiple Values in Laravel Artisan Commands

Need to accept multiple values in your Artisan commands? Laravel's array syntax makes it simple! Let's explore how to handle multiple arguments and options in your commands.Multiple ArgumentsFor arguments that accept multiple values, use the * character:protected $signature = 'mail:send {user*}';This
By Harris Raftopoulos | Nov 09, 2024


Cross-Process Lock Management in Laravel

Working with locks across different processes? Laravel's Cache lock system lets you acquire, restore, and release locks seamlessly across requests and jobs! Let's explore this powerful feature.Basic Lock ManagementHere's how to handle locks between processes:$lock = Cache::lock('processing', 120)
By Harris Raftopoulos | Nov 10, 2024



#Ahmad Rosid

How to Extract Audio from MKV Files Using FFmpeg

By Ahmad Rosid | Nov 06, 2024


How to hide scrollbar in tailwindcss?

By Ahmad Rosid | Nov 08, 2024



#IT Solution Stuff

Laravel 11 Display Image from Storage Folder Example

In this post, I will show you how to display image from storage app public folder in laravel 11 application.

Laravel provides a secure way to store images and files in the storage folder, preventing …..
#Laravel
By Hardik Savani | Nov 04, 2024


Laravel Relationship with JSON Column Example

In this post, we will learn how to make relationship with json column in laravel application.

Sometimes, we need to store IDs in a JSON format. But if we want to get data from another table, how do w…..
#Laravel
By Hardik Savani | Nov 06, 2024


Laravel Relationship with Comma Separated Values Example

In this post, we will learn how to make relationship with comma separated column values in laravel application.

Sometimes, we need to store IDs in a comma separated values format. But if we want to g…..
#Laravel
By Hardik Savani | Nov 08, 2024


Laravel Notify Flash Messages using Laravel Notify Example

In this tutorial, I will show you how to setup flash messages using laravel notify package in laravel application.

In a Laravel project, we often need to set up flash messages with sessions to show u…..
#Laravel
By Hardik Savani | Nov 09, 2024



#Stitcher

Unfair Advantage

By Brent | Nov 09, 2024