@Hamelraj How is your answer different from mine? Also how is this helping the OP, he is asking to find all the routes that are generates by the resources method. He is also asking for Laravel 5.0, which doesn't have the route:list command but uses the routes command instead.
As @bobbybouwmann said, there is no out of the box solution for your question. But you can write your own artisan command that will do that for you. Don't forget to read "Writing Output" section which allows you to get your results in command shell.
@RokSiEu I think he wants to list all the routs that are generated by a resource, which is technically almost impossible, since you can't catch it. Unless you know the name of the resource, but if you have another route with that same name you still won't have only the routes created by the resource function
The @RokSiEu 's suggestion may work with some adjustments. I need this cause i'm thinking on a solution to auto-generate permissions slugs for all CRUD's inside my application. So i will create a custom command for the artisan to get all those routes and fill my database.
@RokSiEu Your last code is getting all controllers registered in my auto-loader and listing all their methods. But, it's still not getting only the methods generated by a resource route. Your first code (that i marked it as the best solution) is very close to perform what i want, so i'll work on it.