Laravel Goto
使用Alt+左键单击进入各种Laravel文件
详细信息
安装
- 总数 13K
- Win 9K
- Mac 2K
- Linux 3K
Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | Jun 30 | Jun 29 | Jun 28 | Jun 27 | Jun 26 | Jun 25 | Jun 24 | Jun 23 | Jun 22 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 4 | 0 | 2 | 5 | 4 | 2 | 2 | 0 | 3 | 4 | 5 | 5 | 5 | 3 | 1 | 4 | 1 | 2 | 2 | 2 | 3 | 0 | 3 | 2 | 2 | 2 | 2 | 4 | 0 | 0 | 4 | 0 | 6 | 3 | 2 | 3 | 2 | 5 | 4 | 3 | 2 | 2 | 2 | 1 |
Mac | 1 | 2 | 0 | 0 | 1 | 1 | 3 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Linux | 0 | 1 | 0 | 0 | 3 | 2 | 0 | 0 | 1 | 0 | 0 | 2 | 3 | 2 | 0 | 2 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 3 | 2 | 2 | 3 | 0 | 1 | 0 | 2 | 2 | 0 | 3 | 1 | 0 | 1 | 5 | 2 | 1 | 0 | 1 | 0 |
自述文件
Laravel Goto
进入各种Laravel文件
功能
进入Blade
进入blade模板文件。
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组件文件。
<x-alert:hello />
进入Controller
进入控制器并高亮显示方法。
Route::get('/', 'HelloController@index');
Route::resource('photo', 'HelloController', ['only' => [
'index', 'show'
]]);
从路由助手进入Controller
进入Middleware
进入Config
进入配置文件并高亮显示选项。
Config::get('app.timezone');
Config::set('app.timezone', 'UTC');
进入Filesystem config
进入filesystem配置文件并高亮显示选项。
Storage::disk('local')->put('example.txt', 'Contents');
进入Language
进入单个语言文件或打开所有文件并高亮显示选项。
进入.env
env('APP_DEBUG', false);
进入Command
进入Inertia.js
Route::inertia('/about', 'About/AboutComponent');
Inertia::render('MyComponent');
inertia('About/AboutComponent');
进入Livewire
@livewire('nav.show-post')
<livewire:nav.show-post />
进入path helper
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
$file = 'js/hello.js';
默认支持的静态文件扩展名
- js
- ts
- jsx
- vue
- css
- scss
- sass
- less
- styl
- htm
- html
- xhtml
- xml
- log
安装
包控制
Ctrl+Shift+P
然后选择包控制:安装包
- 输入
Laravel Goto
手动
- macOS
git clone https://github.com/absszero/LaravelGoto.git ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/LaravelGoto
- Linux
git clone https://github.com/absszero/LaravelGoto.git ~/.config/sublime-text-3/Packages/LaravelGoto
- Windows
git clone https://github.com/absszero/LaravelGoto.git %APPDATA%\Sublime Text 3\Packages\LaravelGoto
使用方法
- 选择文本,
右键单击
打开内容菜单,按Laravel Goto
或使用 Alt + ;。
扩展静态文件扩展名
您可以通过 首选项 > 包设置 > LaravelGoto > 设置
添加其他文件扩展名,并添加此选项 static_extensions
"static_extensions": [
"your_extension_here"
]