Skip to content

Commit 2749913

Browse files
committed
README.md: Add route section
1 parent a94cd69 commit 2749913

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,21 @@ Route::view('/user/profile', 'user.profile')
4848
- [x] Diagnostics for template files that do not exists
4949
- [ ] Code action to create view file that do not exists.
5050

51+
### Routes
52+
53+
```php
54+
route('dashboard');
55+
redirect()->route('dashboard');
56+
URL::route('dashboard');
57+
```
58+
59+
- [ ] Hover information shows route definition
60+
- [ ] Go to definition
61+
- [ ] Auto-complete existing route names
62+
- [ ] Auto-complete route arguments
63+
- [ ] Diagnostics for routes that do not exists
64+
- [ ] Code action to create a new route if route do not exists.
65+
5166
### Environment
5267

5368
```php

0 commit comments

Comments
 (0)