This is a very common issue when you got the 419 page expired issue in the Laravel application. This happens due to inactivity on the page for a long time. Laravel handles the form request with a CSRF (Cross-Site Request Forgery) token. For every form submit, Laravel generates a new token. This is a secure […]
How to Integrate CKEditor 4 in Laravel 8 With File Upload
CKEditor is a smart rich text editor that comes up with advanced options to manage your content. Generally, if you want your content to be stored in the actual HTML format then a WYSIWYG editor is required. The rich text editor solves your problem in case you are managing a kind of CMS. The normal […]
How to Create a Virtual Host in XAMPP For PHP in Windows
The Virtual Host in PHP provides a domain URL in the local system. It allows you to run your application on a domain virtually. You can configure Apache virtual host easily for your application. If you create the Apache Virtual Host in PHP application then it will be super easy for you. You can run […]
How to Use Toastr JS in Laravel 8 For Showing Notification
While creating a web application, it is common to show the notification on the client-side for a certain action. Suppose, for adding a new record, or updating a record. On completion of that action, we show a notification. It shows the response based on that action. There are lots of libraries for showing notifications or […]
How to Create Custom Password Reset Link in Laravel 8
Whenever you create login and signup functionality for user authentication, you require a password reset option. This password reset link will help when the users forgot their password. In the reset link, there will be generally a token and that token needs to validate. In Laravel, there are default auth scaffolding like UI auth, Breeze […]
Pass Data to Master Layout By Service Provider in Laravel 8
In Laravel, it is easy to break down the layouts into different sub layouts. It is a good approach to have a sub layout for a large view. Laravel supports the master layout concept. The master layout works as a placeholder where you can load different sub layouts. Also, you can pass data from different […]
Redirect HTTP to HTTPS Using Middleware in Laravel 8
After the development of any application, it needs to be hosted on the server. After uploading and configuration of the application, you will be able to access your website through a URL. You also need an SSL certificate to secure the domain URL. But, after installing the SSL certificate the site doesn’t redirect from HTTP […]
Create REST API in Laravel 8 Using JWT Authentication
You already know about the data security of JSON. The RESTful API uses JSON data. While sending JSON data through the API, you have to take care of its access. You have to restrict unauthenticated access. You cannot reveal the data passing in the form of JSON to everyone. Hence, it is required to use […]
How to Create Github Login in Laravel 8 Using Socialite
Github is very popular for software development and version control using Git. It provides the distributed version control, source code management (SCM), bug tracking, and many more features. Also, you can use its API for creating the Github Login for any web or mobile application. While implementing this awesome functionality, you will require to have […]
- « Previous Page
- 1
- …
- 6
- 7
- 8
- 9
- 10
- …
- 15
- Next Page »