PHP

Hypertext Preprocessor, which the PHP Group's documentation describes as a "recursive acronym."
Sign Up Form

Sign Up

Php

How to get a link with subdomain either using url() helper or route() helper in Laravel?

I have set up my subdomain domain routes like this:- Route::group(, function () { Route::get('/login'...

Running MQTT publish command in Laravel queue with database option fails but in sync it works ?

Here is my MQTT service class: <?php namespace AppServices; use IlluminateContractsContainerBindingResolutionException; use PhpMqttClientExceptionsConfigurationInvalidException; use PhpMqttClientExceptionsConnectingToBrokerFailedException;...

Mocked method is not used with Instance In Laravel ?

  Inside my Export class I have created this method: public function getBranches() { return...

How can You retrieve Auth data in 404 pages in Laravel 11

In short, You  looking to have the Auth::user() data sent even in 404 pages in...

Request Lifecycle in Laravel 11 ?

Laravel is a powerful and flexible PHP framework used for web development. Understanding its request...

How to Create a Activity Logs in Laravel 11 ?

Hello, laravel web developer! In this article, we’ll see how to create activity logs in...

How to Create CustomS Helper Function in Laravel 11?

Hello developers, In this guide, I’ll walk you through the process of creating custom helper...

How To Add Cron Job Task Scheduling IN Laravel 11 ?

  Hello developer, we’ll learn about laravel 11 cron job task scheduling. Laravel’s command scheduler offers a...