generated from liutk/owl-admin-base
25 lines
1.0 KiB
PHP
25 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider and all of them will
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', [App\Http\Controllers\IndexController::class, 'index']);
|
|
|
|
//服务项目
|
|
Route::get('/examples', [App\Http\Controllers\ArticleController::class, 'examples']);
|
|
Route::get('/company', [App\Http\Controllers\ArticleController::class, 'company']);
|
|
Route::get('/contactus', [App\Http\Controllers\ArticleController::class, 'contactus']);
|
|
Route::get('/news', [App\Http\Controllers\ArticleController::class, 'newsList']);
|
|
Route::get('/search', [App\Http\Controllers\ArticleController::class, 'searchList']);
|
|
Route::get('/articles/{article}/info', [App\Http\Controllers\ArticleController::class, 'info']);
|