如何在Laravel 5.8中发送短信

时间:2019-05-24 11:17:38

标签: laravel-5.8

看看我的密码

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>

我尝试过但是我发现了这个错误。

  

函数()不存在

1 个答案:

答案 0 :(得分:1)

尝试这样命名您的路线...

Route::get('/mobileServices', function (){
    Alert::message('Welcome back!');
})->name('mobileServices');

https://laravel.com/docs/5.8/routing#named-routes