Laravel Forge launched their first official command-line tool that gives you a nice set of commands to manage your Forge servers, sites, and more. The first release (v1.0) of the Forge CLI contains around thirty commands, including initiating deployments, viewing
Application Performance Monitoring (APM), as the name suggests, is the process of monitoring the performance of the many aspects of your application. When an end-user logs into your application, for even just one web page to load on their device,
What should we learn next? If you are a developer, this question should always be in your mind. Every day, new technologies are introduced and improvements are made to existing ones. Since we can’t learn all these technologies, it is
PHP 8 is here! PHP 8 is a new major improved version, which means that it will introduce performance improvements and lots of new features such as the JIT compiler, union types, attributes, and more. New features Let’s start with
Media Library can associate files with Eloquent models. You can, for instance, associate images with a blog post model. In your Blade view, you can retrieve URLs to the associated images. It can handle multiple collections, work with multiple filesytems,
Sanctum is Laravel’s lightweight API authentication package. This tutorial will go over using Laravel Sanctum to authenticate a mobile app. The app will be built in Flutter, Google’s cross-platform app development toolkit. We may skip some implementation details of the
Before we move directly to talk about 7.4 release, let’s go through each of the earlier minor releases of Laravel 7. Laravel 7.1 – Patch to Fix Potential XSS Attacks We will briefly look at the new features in the
If you want to run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups then it is pretty easily possible with this multi-tenant Laravel package. With this package, you can serve
Laravel Snooze is a package, which simplifies automating future notifications and reminders in Laravel. The package’s readme has some typical use-cases for this package: Reminder system (1 week before appt, 1 day before, 1 hour before, etc) Follow-up surveys (2
When creating jobs, listeners, or subscribers to push into the queue, you may start thinking that, once dispatched, you’re all on your own with what the queue worker decides to do with your logic. Well, it’s not that you
Laravel Forge CLI
Laravel Forge launched their first official command-line tool that gives you a nice set of commands to manage your Forge servers, sites, and more. The first release (v1.0) of the Forge CLI contains around thirty commands, including initiating deployments, viewing
Tags:
What is Application Performance Monitoring (APM)?
Application Performance Monitoring (APM), as the name suggests, is the process of monitoring the performance of the many aspects of your application. When an end-user logs into your application, for even just one web page to load on their device,
Tags:
What will be the best Back End development framework for 2021
What should we learn next? If you are a developer, this question should always be in your mind. Every day, new technologies are introduced and improvements are made to existing ones. Since we can’t learn all these technologies, it is
Tags:
What’s new in PHP 8
PHP 8 is here! PHP 8 is a new major improved version, which means that it will introduce performance improvements and lots of new features such as the JIT compiler, union types, attributes, and more. New features Let’s start with
Tags:
Laravel component Media Library
Media Library can associate files with Eloquent models. You can, for instance, associate images with a blog post model. In your Blade view, you can retrieve URLs to the associated images. It can handle multiple collections, work with multiple filesytems,
Tags:
Using Sanctum to authenticate a mobile app
Sanctum is Laravel’s lightweight API authentication package. This tutorial will go over using Laravel Sanctum to authenticate a mobile app. The app will be built in Flutter, Google’s cross-platform app development toolkit. We may skip some implementation details of the
Tags:
Laravel 7.4 – The latest minor release of Laravel 7
Before we move directly to talk about 7.4 release, let’s go through each of the earlier minor releases of Laravel 7. Laravel 7.1 – Patch to Fix Potential XSS Attacks We will briefly look at the new features in the
Tags:
How to develop multi tenant application using Laravel
If you want to run multiple websites using the same Laravel installation while keeping tenant specific data separated for fully independent multi-domain setups then it is pretty easily possible with this multi-tenant Laravel package. With this package, you can serve
Tags:
Automate Future Notifications and Reminders with Laravel Snooze
Laravel Snooze is a package, which simplifies automating future notifications and reminders in Laravel. The package’s readme has some typical use-cases for this package: Reminder system (1 week before appt, 1 day before, 1 hour before, etc) Follow-up surveys (2
Tags:
Laravel: Fail, Retry, or Delay a queued job from itself
When creating jobs, listeners, or subscribers to push into the queue, you may start thinking that, once dispatched, you’re all on your own with what the queue worker decides to do with your logic. Well, it’s not that you
Tags: