Your problem is here action='PostsController@store'
. You're trying to make a post to that 'PostsController@store' string, it's not a valid route.
If you want to translate that to a real route you should the the action()
helper like:
<form method="POST" action="{{ action('PostsController@store' }}">
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community