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 […]
Logout Multiple Auth Session From Other Devices in Laravel 9
While creating an authentication app, we needed to invalidate other browser sessions. This is required when you change the login password of your account. You want to invalidate all other sessions so that next time it will ask for the new password while login the application. This is good actually for security reasons as well. […]
Laravel Mailgun Integration For Sending Email in Laravel 9
Laravel comes up with the customization and integration of third-party libraries. These libraries make the applications more featured. If I will talk about the email service, then Laravel already provides the SwiftMailer library for sending emails. The best thing is this library supports lots of drivers for email configurations. You can configure it with any […]
Create UI Auth Using React Auth Scaffolding in Laravel 9
You can implement Laravel UI Auth using React auth scaffolding. This is similar to using Laravel Bootstrap auth, and Laravel Vue Auth. The front-end auth scaffolding will be generated by the React auth. You will have the same auth functionalities like Login, Register, and the Forgot Password. Now, it totally depends on you to use […]
Create UI Auth Using Vue Auth Scaffolding in Laravel 9
Like Laravel Bootstrap UI Auth, you can use Vue Auth scaffolding in Laravel 9. The front-end auth scaffolding will be generated using Vue js. The auth scaffolding will remain identical with the same functionalities. Even for the UI, it will also install Bootstrap CSS and JS. But, you are free to customize it as per […]
Create UI Auth Scaffolding Using Bootstrap in Laravel 9
Laravel provides a couple of auth scaffolding packages for the user. These packages consist User Register, Login, and Password Reset options. For any user-based authentication system, these three functionalities are almost required. If you will be creating these features in your application, you will have to write a couple of lines of code. That will […]
Use Yajra Datatable in Laravel 9 with Server Side Processing
For displaying large data sets in tabular form, you can use datatable in Laravel 9. You can use Yajra datatable in Laravel 9 using composer. It is a package available to install in your project. Once, it will be added, you can extend its functionalities. Basically, this works on the Ajax technique. It is very […]
- « Previous Page
- 1
- …
- 4
- 5
- 6
- 7
- 8
- …
- 15
- Next Page »