When working on enterprise projects, it’s common to have to download private dependencies that require authentication to be installed (usually, internal or paid...
See how easy it is to get started with automated testing in Laravel There are hundreds of articles on https://dev.to/flippedcoding/4-reasons-you-should-write-te...
The biggest advantage of Laravel over other frameworks is the fact that it comes with a lot of built-in features. In this article, we are going to understand La...
Little trick to pass a data table to your method with laravel. /* * Url schema * http://127.0.0.1:8000/api/messages/?message[]=450&message[]=451&message[]=452 *...
In this article, we will see laravel 8 user roles and permissions without package.Roles and permissions are an important part of many websites. In this laravel...
Most often laravel dev prefer to log the sql query by using below snippet. But the drawback of this is it split out the query, sql bindings and it's time.
https://ohdear.app is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more.
Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
While hosting Laravel on WHM control panel, you need to make sure to set correct timezone at 4 places: MySql Timezone MySql time zone is taken from server time...
Let's get started quickly I found new things in Laravel 9.23 Released I wanted to share with you. Artisan docs command https://github.com/laravel/framework/pull...
Scout APM helps PHP developers pinpoint N+1 queries, memory leaks & more so you can troubleshoot fast & get back to coding faster. Deprecations often are a sour...
Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
https://ohdear.app is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more.
TL;DR: COUNT(*) is optimized to be fast, you should use it. You have probably read in a bunch of different places that you shouldn't use SELECT(*) in MySQL when...
In one of my projects I use https://nova.laravel.com/, for a beautifully-designed administration panel. It includes a very easy to use way to generate graphs in...
TL;DR: Use COUNT(*), not COUNT(id), when you want to count rows. You have probably read in a bunch of different places that you shouldn't use SELECT(*) in MySQL...