It’s good news for the Laravel developers because Laravel released its new version Laravel 10 on 14th February 2023. Like always, Laravel comes up with cool and unique features with its new releases every year. Which makes our development more smooth and more straightforward in terms of functionalities. The updates of Laravel 10 make creating […]
How to Install and Configure PHP Composer in MacOS
The composer is a dependency manager that helps in managing any third-party packages and libraries. If you are working on any PHP framework then the composer plays a major role. You can install the required libraries inside the application. It is an open-source tool and is available for all platforms like Windows, Linux, and MacOS. […]
How to Deploy a React Application on a cPanel in a Subdirectory
The deployment of any application on a cPanel is easy. But, it varies on the type of application environment and dependencies. The most tedious job is configuration inside any server based on the dependencies, whether it is Shared hosting, VPS, or AWS. We can host React App on any server. As we know for running […]
How to Install XAMPP in MacOS For PHP and MySQL Setup
For PHP development XAMPP is the most necessary open-source software. It gives an environment where you get PHP and MySQL together in one place. The XAMPP provides the PHP configuration as well. So, you can manage the php.ini configuration file from there. If you don’t want to go with this, you must have to install […]
How to Install and Configure PHP in MacOS With Apache
In order to work on any PHP web based application, you will need to install it first. In Windows it is easy to install and configure. But if we talk about the Linux or Mac platform then the installation steps are totally different. We already covered up the LAMP stack setup for Ubuntu platform. Today, […]
Form Handling Inside DataTable to Submit All Rows in Laravel 9
Have you ever noticed, the datatable renders only visible rows in the DOM? That means if you have any events triggering inside the datatable rows, it will work for the visible pages only. The reason is whatever is rendered on the first page will be added to the DOM tree. If you try to submit […]
How to Implement Repository Design Pattern in Laravel 9
When you have large projects then managing the code structure, and files inside the project become a tedious job. Sometimes due to an unorganized way the code goes mesh and complicated. To overcome these kinds of issues we can follow a design pattern. A design pattern is an advanced approach for organizing the code structure. […]
How to Create a Zip File of Any Files and Download in Laravel 9
You can make a bundle of any files and convert them into a zip file. Laravel provides the flexibility to create a zip file. This will make it convenient for us to download more than one file together in a combined way. Either you can download multiple files one by one by clicking on the […]
How to Use Group Routes For the Same Controller in Laravel 9
When you are creating any web application in Laravel, you needed more than one route. These routes will redirect the request to the specific function. Mostly, these functions are landed in a controller. When you have multiple routes which are linked with the same controller then you call that controller name again and again. But […]
How to Clear Application Cache without Command Line in Laravel
Laravel provides a different way to clear the cache of the application. No matter whether it is configuration cache, view cache, route cache, etc. While working in the localhost, it will be easy to clear these all cache through the artisan command. You can clear all these caches separately through their individual command. Also, you […]
- « Previous Page
- 1
- 2
- 3
- 4
- 5
- …
- 18
- Next Page »