ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Laravel Goto

by absszero ALL

Goto various Laravel files by Alt+Left-Click

Details

Installs

  • Total 15K
  • Win 10K
  • Mac 2K
  • Linux 3K
Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21 May 20 May 19 May 18 May 17 May 16 May 15 May 14 May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22
Windows 0 0 4 9 0 3 0 0 0 0 0 0 0 1 1 2 0 0 1 0 1 0 0 3 1 2 0 0 0 1 0 0 2 2 1 0 0 0 1 1 0 1 0 1 0 0
Mac 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 2 1 1 0 2 0 0 0 1 0 0 0 3 1 0 0 0 0 0 1 0 2 0 0 0 0 0 0
Linux 0 1 0 3 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 3 3 2 0 0 0 0 2 2 1 1 1 0 0 0 1 4 1 0 1 0 1 1

Readme

Source
raw.​githubusercontent.​com

Laravel Goto

Package Control Downloads GitHub Actions Workflow Status ko-fi

Quick navigation extension for Laravel projects. Jump to views, controllers, configs, language files and more with a single click.

Usage

Method 1: Select text and press Alt + ;

Method 2: Select text → Right-click → Choose Laravel Goto


Features

Views & Components

Blade Templates

Jump to blade view files from:

view('hello_view', ['name' => 'James']);

Route::view('/', 'pages.public.index');

@includeIf('view.name', ['status' => 'complete'])

@each('view.name', $jobs, 'job', 'view.empty')

@extends('layouts.app')

Blade Components

<x-alert:hello />

Inertia.js

Route::inertia('/about', 'About/AboutComponent');

Inertia::render('MyComponent');

inertia('About/AboutComponent');

Livewire

@livewire('nav.show-post')

<livewire:nav.show-post />

Controllers & Routes

Controller Actions

Jump to controllers with method highlighting:

Route::get('/', 'HelloController@index');

Route::resource('photo', 'HelloController', ['only' => ['index', 'show']]);

Middleware

Route Helpers

URI-based Navigation

Use command Laravel Goto: Go to Controller via Uris to browse all routes:


Configuration

Config Files

Jump to config files with option highlighting:

Config::get('app.timezone');

Config::set('app.timezone', 'UTC');

Filesystem Disks

Storage::disk('local')->put('example.txt', 'Contents');

Environment Variables

env('APP_DEBUG', false);

🌐 Localization

Jump to language files:

__('messages.welcome');

@lang('messages.welcome');

trans('messages.welcome');

trans_choice('messages.apples', 10);

Jump to language files or open all matching files with highlighting:


Other Features

Artisan Commands

Path Helpers

app_path('User.php');

base_path('vendor');

config_path('app.php');

database_path('UserFactory.php');

public_path('css/app.css');

resource_path('sass/app.scss');

storage_path('logs/laravel.log');

Static Files

Jump to static assets: “php $file = 'js/hello.js';

**Supported extensions:** js, ts, jsx, vue, css, scss, sass, less, styl, htm, html, xhtml, xml, log

#### Log Files
Use command `Laravel Goto: Go to Log file`:

![](gifs/go-to-log.png)

---

## Installation

### Package Control
1. Press `Ctrl+Shift+P` then select `Package Control: Install Package`
2. Search for `Laravel Goto`

### Manually
Clone the repository into your Sublime Text `Packages` directory:

- **MacOS:** `~/Library/Application Support/Sublime Text 3/Packages/LaravelGoto`
- **Linux:** `~/.config/sublime-text-3/Packages/LaravelGoto`
- **Windows:** `%APPDATA%\Sublime Text 3\Packages\LaravelGoto`

---

## Settings

You can customize the extension via `Preferences > Package Settings > LaravelGoto > Settings`.

| Key | Description | Default |
| :--- | :--- | :--- |
| `php_bin` | Path to your PHP executable | `"php"` |
| `show_hover` | Show hover phantom if available | `true` |
| `static_extensions` | Additional static file extensions to support | `[]` |

**Example configuration:**
```json
{
    "php_bin": "c:\\php\\php.exe",
    "show_hover": true,
    "static_extensions": ["webp", "svg"]
}