Validate That Data (A 3 Minute Overview of Validation in Laravel)

A crucial element of building real-world applications is making sure any data you’re accepting from your users is validated. AKA, is it in the format you’re expecting and are there no security concerns with the data before storing it in your database. Thankfully, Laravel has a TON of helpers, rules, and more to make validation... easy. Let’s take a look. Links:
Back to Top