I had to do some changes on a complex Laravel project which I was not familiar. It took quite some time to navigate and find correct files. Is there any package/tool for generating overview of a Laravel project. I would prefer to generate something like this.
route             ->   controller@function             ->   models       ->    view
------------------------------------------------------------------------------------------
reports/orders/   ->  ReportsController@print_orders   -> Report, Order  -> reports/index
...
I am aware of php artisan route:list but it doesn't show all the details.