news.php 505 B

123456789101112
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. Route::group(['domain' => env('APP_HOST_WEB'), 'prefix' => 'news'],function (){
  4. Route::match(['get','post'],'banner', 'NewsController@banner')->name('news.banner');
  5. Route::match(['get','post'],'notices', 'NewsController@notice')->name('news.notices');
  6. Route::match(['get','post'],'notice', 'NewsController@noticeDetails')->name('news.notice');
  7. Route::match(['get','post'],'about_us', 'NewsController@getAboutUs')->name('news.about_us');
  8. });