Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am a beginner and I am not getting any tutorial or something which can help me understand how to process data collected from forms in Laravel.
Use Laravel's Input class:
Input
$name = Input::get('name');
This return data from both $_GET & &_POST (and some more).
$_GET
&_POST