How to Create Notifications in Laravel
This article provides a comprehensive guide on how to create notifications in Laravel. Learn what notifications are, which channels Laravel supports, how to send live database notifications, and more!
This article provides a comprehensive guide on how to create notifications in Laravel. Learn what notifications are, which channels Laravel supports, how to send live database notifications, and more!
This article explains exceptions and how to handle them gracefully in Laravel. Learn how to create custom exceptions, work with exception handlers, integrate with 3rd-party error-tracking services, and create robust, scalable web applications!
Upgrading your Laravel app has many benefits: preventing security vulnerabilities, access to new features, and more. Read this article to learn what's new in Laravel 9 and how to upgrade in record time.
Love beautiful websites? Well, we do too! However, to build an aesthetic website, a robust and scalable framework is absolutely paramount! For that, choosing the best framework for your web development projects is one of the crucial steps. But, it can be a bit of a tough choice when you’re only in the initial phase. Moreover, so many questions can come to your mind as well like – Which framework should you use? What features should be included? Does it have good documentation and support?
You use realtime communication every day. It is the simultaneous exchange of information between a sender and a receiver with almost zero latency. Internet, landlines, mobile/cell phones, instant messaging (IM), internet relay chat, videoconferencing, teleconferencing, and robotic telepresence are all examples of realtime communication systems. In this tutorial, you’ll learn how to build a web based realtime chat app using Laravel, Ably and Vue.js.
Larval is one of the most popular PHP frameworks, created especially to help developers quickly build web applications. According to builtwith.com, more than 27.5 million websites use a PHP framework, making up 14% of worldwide websites. However, you should always adhere to the following Laravel best practices to make Laravel development a breeze and reap maximum benefits.
Laravel provides a file system abstraction that includes simple drivers for working with local filesystems, SFTP, and Amazon S3. This article teaches how to use Amazon S3 in Laravel.
In our last post, we began comparing the PHP frameworks Laravel and Symfony. We went over an overview of each framework, and also what particular advantages each one has. In this post, we’ll continue by discussing the following: Finally, we’ll go over which framework is right for your particular use case.
The modern world, which is full of mobile devices, requires more responsive web applications that provide real-time interactions. As a result, you require a practical backend framework to synchronize information in real time and develop a robust database link with the user interface. For example, let's consider your smartphone's live soccer game score that provides instant entry into all the player statistics.
Sometimes you have a task that is too slow for a typical web request, such as sending an email or parsing a CSV file. Laravel Queues are a great fit for that type of work. In this article, Farhan dives deep into the Laravel docs to help us understand all of the various options.