For managing the large number of data set in a tabular form, you will require a Datatable in Laravel. Datatable provides an easy way to handle the data in the form of a table. You can apply the datatable to any table. After applying the table will have the options to search, filter, sort, pagination, […]
How to Send Emails Using Twilio Sendgrid in Laravel 8
Laravel email works over a popular mailer library that is the SwiftMailer. This is an inbuilt library in Laravel. It allows us to integrate several mail drivers for sending emails. You can use SMTP and API based drivers to send emails in Laravel. I already shared tutorials for integrating the SMTP like Gmail and Mailgun. […]
How to Send Email Using Mailgun in Laravel 8
Laravel provides simple API to send emails over the SwiftMailer library. This library provides lots of drivers for the email configuration. The driver is like SMTP, Mailgun, Postmark, Amazon SES, and Sendmail. The best thing is the API based drivers are much faster than the SMTP servers. Also, it requires the Guzzle Http library to […]
How to Send Email in Laravel 8 Using Gmail SMTP
Gmail SMTP configuration for sending any email is pretty easy. You can send email to email recipients using Gmail. Laravel provides an API named Swift Mailer library. This API provides the driver for SMTP, Mailgun, Postmark, Amazon SES, etc. You can send an email by configuring any of these drivers. API based drivers are simpler […]
Create Auth Using Jetstream and Intertia js in Laravel 8
Hello guys, I am back with another tutorial in the Laravel 8 series. As we know, after releasing Laravel 8, some cool features are added to the new packages. The jetstream is one of the very powerful features in this list. By using this Jetstream package, you can create authentication for the user. This package […]
How to Create Auth with Jetstream and Livewire in Laravel 8
After updating Laravel, we got the amazing features in Laravel 8. Laravel 8 has totally changed with the auth scaffolding. In the previous version of Laravel (Laravel 7), it was using the Laravel/ui package for the auth scaffolding. But, Laravel 8, uses the laravel/jetstream package. So, in this post, we will be learning about the […]
Laravel 8 Ajax CRUD Application Tutorial For Beginners
We can use Ajax in Laravel 8 for creating any application. Ajax will make an asynchronous execution of the webpage. So, if you want to create a webpage in PHP. And you don’t want to reload it, you will have to use the Ajax. In this post, I will show you how to create a […]
Laravel 8 Multiple Images Upload with Validation
In Laravel 8 you can upload single as well as multiple images. The image has attributes like extension, size, and the temp name. We can upload and store image name into the database. Also, we can replace the original image name. This will overcome the repetition of the image name from the previously uploaded. Previously, […]
How to Upload Image in Laravel 8 with Validation
You can upload images in Laravel 8 with validation. The image uploading is a very common functionality in any form. You can implement Laravel 8 image upload functionality with a validation. In the image validation, you can check the file type, size, resolution, etc. The validation process makes a valid image upload. Today, in this […]
Laravel 8 Form Validation Tutorial For Beginners
Form validation is a client type of validation that is required in any form. Whether you are creating a contact form, lead form, or any kind of registration. It always required a completed and validated data. If you are taking inputs from the users, you always want that user is genuine. Also, every information must […]
- « Previous Page
- 1
- …
- 15
- 16
- 17
- 18
- 19
- …
- 22
- Next Page »