Laravel PHP Developer Question:
Do you know validations in laravel?
Answer:
In Programming validations are a handy way to ensure that your data is always in a clean and expected format before it gets into your database. Laravel provides several different ways to validate your application incoming data.By default Laravel’s base controller class uses a ValidatesRequeststrait which provides a convenient method to validate all incoming HTTP requests coming from client.You can also validate data in laravel by creating Form Request.
Previous Question | Next Question |
Tell me what Are The Feature Of Laravel 5.0? | Tell me how would you add a 3rd party package like Sentry? |