1 | <?php |
||||
2 | Route::group(['namespace'=>'Ipecompany\Smsirlaravel\Controllers','middleware'=>config('smsirlaravel.middlewares')], function (){ |
||||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||||
3 | Route::get(config('smsirlaravel.route'),'SmsirlaravelController@index')->name('sms-admin'); |
||||
0 ignored issues
–
show
The function
config was not found. Maybe you did not declare it correctly or list all dependencies?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||
4 | Route::get('sms-admin/{log}/delete','SmsirlaravelController@delete')->name('deleteLog'); |
||||
5 | }); |
||||
6 |