I am developing a web application by Laravel5, and in code of Controller, I wrote a code bellow.
public function show($id) { $post = Post::find($id);
You should try like:
Please put use Route; instead of use App\Providers\Router; and try
use Route;
App\Providers\Router;
Or you can also use the app('router')->pattern().
app('router')->pattern()
For more details please follow this link.