看看我的密码
web.php
Route::get('/mobileServices',['as' => 'mobileServices'], function (){
Alert::message('Welcome back!');
});
blade.php
<tr>
<td><a href="{{ route('mobileServices') }}">Mobile Services</a> </td>
</tr>
我尝试过但是我发现了这个错误。
函数()不存在
答案 0 :(得分:1)
尝试这样命名您的路线...
Route::get('/mobileServices', function (){
Alert::message('Welcome back!');
})->name('mobileServices');