Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Last active April 30, 2017 15:37
Show Gist options
  • Save Mombuyish/82e70370eb64f72bca70707a398b738e to your computer and use it in GitHub Desktop.
Save Mombuyish/82e70370eb64f72bca70707a398b738e to your computer and use it in GitHub Desktop.
<?php
public function store(Request $request)
{
$post = $this->postService->create($request->all());
return redirect()->to(route('posts.show', $post->id))->with('message', 'Created Successful.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment