When using Sublime 3, I’d like to search for a file using the "Dot notation".
E.g. If I press Ctrl-F and type frontend/banks/index it will find, for example, frontend/banks/index.php
But I want to type frontend.banks.index as are used in Laravel’s views:
return view(‘frontend.banks.index’, compact(‘banks’));
How do I achieve this? Is this a sublime setting or a package?
Source: Laravel