Friday, April 14, 2017

Need to press Enter the redirect url to get output of POST request of form

I need to press enter manually to the url to get output of the POST request otherwise nothing is being displayed for the same route.

my forms .create view is

<form method="POST" action="/stores" enctype="multipart/form-data">

my controller is

public function index()
{
    $stores = store::all();
    return view ('stores.index', compact ('stores'));
}

the url generated after the the form POST is

http://labs.app:8000/stores

Everytime I need to press enter to the url to display details



via Abhishek Ganguly

Advertisement