回答編集履歴
1
typo
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
```
|
2
2
|
|
3
|
-
Route::get('{dir}/{path}', function ($dir, $path) { return view(.'.'.$path); });
|
3
|
+
Route::get('{dir}/{path}', function ($dir, $path) { return view($dir.'.'.$path); });
|
4
4
|
|
5
5
|
```
|
6
6
|
|