如何在 laravel 5.8 中发送短信
How to send sms in 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>
我试过了,但我遇到了这个错误。
Function () does not exist
试试这样命名你的路线...
Route::get('/mobileServices', function (){
Alert::message('Welcome back!');
})->name('mobileServices');
看看我的代码
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>
我试过了,但我遇到了这个错误。
Function () does not exist
试试这样命名你的路线...
Route::get('/mobileServices', function (){
Alert::message('Welcome back!');
})->name('mobileServices');