路线 [文件上传] 未定义 laravel-8
Route [file-upload] not defined laravel-8
我想通过他们设置路由,但未定义路由 [file-upload]。 (查看:C:\xampp\htdocs\ContentBaseApp - 1.0.2\resources\views\navigation-menu.blade.php)显示错误
这是resources\views\navigation-menu.blade.php
<x-jet-dropdown-link href="{{ route('file-upload') }}">
{{ __('Highlights') }}
</x-jet-dropdown-link>
这是我的文件位置views/file-upload
这样做就解决了
<x-jet-dropdown-link href="/file-upload">
{{ __('Highlights') }}
</x-jet-dropdown-link>
我想通过他们设置路由,但未定义路由 [file-upload]。 (查看:C:\xampp\htdocs\ContentBaseApp - 1.0.2\resources\views\navigation-menu.blade.php)显示错误 这是resources\views\navigation-menu.blade.php
<x-jet-dropdown-link href="{{ route('file-upload') }}">
{{ __('Highlights') }}
</x-jet-dropdown-link>
这是我的文件位置views/file-upload
这样做就解决了
<x-jet-dropdown-link href="/file-upload">
{{ __('Highlights') }}
</x-jet-dropdown-link>