How to access session data?
Session data be access by creating an instance of the session in HTTP request. Once you get the instance, use get() method with a “Key” as a parameter to get…
Session data be access by creating an instance of the session in HTTP request. Once you get the instance, use get() method with a “Key” as a parameter to get…
Session is used to pass user information from one web page to another. Laravel provides various drivers like a cookie, array, file, Memcached, and Redis to handle session data.
Ajax stands for Asynchronous JavaScript and XML is a web development technique that is used to create asynchronous Web applications. In Laravel, response() and json() functions are used to create…
English: Routing is the process of defining application URLs and what to do when a URL is accessed. Hindi: Routing ka matlab hota hai application ke URL banana aur unpe…
Object Relational Mapping is a technique that helps developers to address, access, and manipulate objects without considering the relation between object and their data sources.
DB facade is used to run SQL queries like create, select, update, insert, and delete.
Collections is a wrapper class to work with arrays. Laravel Eloquent queries use a set of the most common functions to return database result.
It is a feature of Laravel. It provides handle throttling. Rate limiting helps Laravel developers to develop a secure application and prevent DOS attacks.
Laravel guard is a special component that is used to find authenticated users. The incoming requested is initially routed through this guard to validate credentials entered by users.
Laravel installation has an inbuilt set of common authentication controllers. These controllers are: RegisterController LoginController ResetPasswordController ForgetPasswordController