Latest Blogs

with sidebar
Sign Up Form

Sign Up

How to trigger event on input date select when value is unchanged?

720 421 point-admin

When a date is chosen in an HTML input element, you can use JavaScript to alter events and wait for the input element’s focus in order to initiate an event…

read more

Form- address and Postalcode using html Javascript I need to Check if the Zip code matches the address or not and vice versa and

778 632 point-admin

<!DOCTYPE html> <html> <head> <title>Address and Zip Code Validation</title> <style> body { font-family: sans-serif; } .container { display: flex; flex-direction: column; width: 400px; margin: 50px auto; padding: 20px; border: 1px…

read more

 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

For posting your own blogs  CLick here