Http request In Laravel and the form data

All request of our new Laravel application will be handled by Laravel’s Illuminate\Http\Request class also we can retrieve the cookie, file, input that were submitted with the request. When user submit in form we can get the information using Request class . Form: <form action=”posts/1/comments” method=”post”>     @csrf     <input type=”text” name=”name” placeholder=”name”>     <input … Continue reading Http request In Laravel and the form data