Latest Blogs

with sidebar
Sign Up Form

Sign Up

 Crafting a Simple Article Design with HTML and CSS

960 540 point-admin

  Introduction to HTML and CSS Synergy Creating a visually appealing and structurally sound article using HTML and CSS involves a meticulous blend of semantic HTML elements and robust CSS…

read more

Why does a div with display: block (default) not expand to vertically fit an image without overflow but changing it to display: inline-block does?

1024 536 point-admin

We have a div with a background color via background-image:linear-gradient, and with the div’s default display as block it doesn’t expand vertically to fit the image, the image overflows over…

read more

Laravel Custom Package Problem Call to undefined method ?

310 163 point-admin

We are  trying to create my custom package for laravel. There is my code, https://github.com/onurzdgn/cloudflare-image-api I have an problem when I using my project this package. The error is: Call to undefined…

read more

Supervisor alternatives on shared hosting in php Laravel??

1024 512 point-admin

have deployed my app on shared host “Hostgator”, I’ve ssh successfull access, however I can’t install supervisor to manage queue processing, the command sudo apt-get install supervisor always return errors, so I…

read more

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

310 163 point-admin

I have set up my subdomain domain routes like this:- Route::group(['domain' => '{subdomain}.' . env('APP_URL'), 'prefix' => 'console', 'namespace' => 'admin', 'middleware' => 'subdomain'], function () { Route::get('/login', 'LoginController@index')->name('admin.login'); });…

read more

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

1024 615 point-admin

Here is my MQTT service class: <?php namespace App\Services; use Illuminate\Contracts\Container\BindingResolutionException; use PhpMqtt\Client\Exceptions\ConfigurationInvalidException; use PhpMqtt\Client\Exceptions\ConnectingToBrokerFailedException; use PhpMqtt\Client\Exceptions\ClientNotConnectedToBrokerException; use PhpMqtt\Client\Exceptions\RepositoryException; use PhpMqtt\Client\Exceptions\PendingMessageAlreadyExistsException; use PhpMqtt\Client\Exceptions\DataTransferException; use PhpMqtt\Client\MqttClient; use Psr\Container\NotFoundExceptionInterface; use Psr\Container\ContainerExceptionInterface; use…

read more

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

1024 395 point-admin

In short, You  looking to have the Auth::user() data sent even in 404 pages in Laravel 11? Try using the Route::fallback method. Use a controller or a callback function to load your…

read more

Mocked method is not used with Instance In Laravel ?

1024 512 point-admin

  Inside my Export class I have created this method: public function getBranches() { return Branch::all(); } We want to Mock up this Method By Some Changes. Now We have…

read more

Request Lifecycle in Laravel 11 ?

1024 576 point-admin

Laravel is a powerful and flexible PHP framework used for web development. Understanding its request lifecycle is crucial for effectively working with it. Here’s an overview of the request lifecycle…

read more

How to Create a Activity Logs in Laravel 11 ?

1024 576 point-admin

Hello, laravel web developer! In this article, we’ll see how to create activity logs in laravel 11. In laravel 11 we’ll learn user activity logs. When the user performs any…

read more

For posting your own blogs  CLick here