7 lines
226 B
PHP
7 lines
226 B
PHP
<?php
|
|
|
|
Route::prefix('MailLog')->name('MailLog.')->group(function () {
|
|
Route::match(['get', 'post'], '', 'MailLogController@index')->name('index');
|
|
Route::get('show/{id?}', 'MailLogController@show')->name('show');
|
|
});
|