Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Laravel GotoNew to Visual Studio Code? Get it now.
Laravel Goto

Laravel Goto

Adrian

|
244,525 installs
| (13) | Free
| Sponsor
Go to various Laravel files
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Laravel Goto

Visual Studio Marketplace Open VSX Version

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

Usage

Method 1: Hover over any supported text and click the link or 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);

Open all matching language 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:

$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:


Requirements

Optional: Enable Symbol Navigation

For direct method navigation when opening controllers, install one of these extensions:

  • PHP Symbols
  • PHP Intelephense

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft