Laravel uses the SwiftMailer library for sending emails by default. The SwiftMailer is inbuilt in the Laravel. But, have you tried any other package for sending emails in Laravel? If not, then I will be showing you the PHPMailer in this post. You will already aware of the PHPMailer because in a PHP script generally, […]
Dynamic Email Configuration in Laravel 8 For Sending Email
Mostly, we do a static email configuration in any programming/scripting language. The static configuration will work only for one user. So, what if you want to do an email setup for multiple users. In other words, if you are creating a kind of a portal or CRM in which you require to allow users to […]
Laravel 8 Client Side Form Validation Using jQuery
Form validation is a measured challenge to store validated data. You cannot store incomplete data in the database. This is possible only by proper validation. There are different kinds of validation. Even, you can handle the form validation at the client end and at the server end. The client-side form validation prevents the user from […]
Create RESTful APIs in Laravel 8 Using Sanctum Auth
There are lots of packages available to authenticate the APIs request in Laravel. Such as Passport, JWT, and Sanctum. We are already familiar with Laravel Passport and JWT (JSON Web Token) to authenticate the APIs. Sanctum is introduced in Laravel 7 and really this is also a secured package. The Sanctum provides the authentication for […]
Create RESTful APIs in Laravel 8 Using Passport Auth
Displaying out JSON data only is not such an API. An API contains the data that synchronizes between the two applications. It connects two applications through an end-point. Basically, it works as an intermediary between the two applications. Every API request will have a response. So, in the overall process the API talks to another […]
How to Upload Image in CKEditor 5 Using Laravel 8
CKEditor provides a rich text library where you can format the text very easily. It provides 200+ features to collaborate with text editing. Apart from the content, you can upload the image as well in CKEditor 5 in Laravel 8. The images can have full width and side alignment. If you are putting images within […]
How to Implement CKEditor 5 in Laravel 8 From Scratch
Sometimes we required an advanced text editor in any CMS or web application where we can write text in the form of HTML. The normal text area will not provide the formatting of the content. It always stores the content in a plain format. Hence, in that situation, we required to have this type of […]
How to Create and Use Database Seeder in Laravel 8
Laravel provides a method for seeding the test data for the database table. You can create n number of seeders for the tables. The seeder will contain the fields for which you will gonna insert the test data. There is are the difference between the Factory and the Seeder. Actually, the factory is used to […]
How to Create Pagination in Laravel 8 with Eloquent
You always required pagination for handling a large number of data. If you want to split data into chunks then the pagination is the best way. It breaks down the total number of records in chunks per page. It provides the option to navigate to the next and previous page. Hence, you can have access […]
How to Use Guzzle Http in Laravel 8 For Request Handling
There are lots of library and packages are available for handling the API requests on the client-side. But what about the server-side? If we talk about the core PHP then you can handle the API requests using the cURL. But, do you think is it a good practice to use cURL in a PHP framework […]
- « Previous Page
- 1
- …
- 14
- 15
- 16
- 17
- 18
- …
- 22
- Next Page »