What is meant by Laravel - Validation ?
Answers were Sorted based on User's Feedback
Answer / rajani
Validation is the most important aspect while designing an application and it validates the incoming data.
By default, base controller class uses a ValidatesRequests trait which provides a convenient method to validate incoming HTTP requests with a variety of powerful validation rules.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / Hari Shanker Vishwakarma
Laravel's validation feature allows developers to validate incoming request data against a set of rules. This ensures that the data adheres to specific format, length, existence and other requirements before it is saved to the database. It uses the Validator class to check the input data.
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by make() method?
What is auth :: routes ();?
State the difference between codeigniter and laravel.
What are the example of services?
What is the directory structure of laravel 5.6?
What is blade in laravel?
How to do 301 redirects in laravel?
What are events in laravel?
What is the use of blade?
What is a Laravel - Encryption ?
What is laravel contract?
Tell me how to enable the query logging?