You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
35 lines
1.5 KiB
<?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 within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
|
|
Route::get('/', function (Request $request) {
|
|
return view('http.index');
|
|
});
|
|
Route::get('/lora', [\App\Http\Controllers\IndexController::class, 'lora']);
|
|
Route::get('/lora2', [\App\Http\Controllers\IndexController::class, 'lora2']);
|
|
Route::get('/getPelmaData', [\App\Http\Controllers\IndexController::class, 'getPelmaData']);
|
|
Route::get('/loraData', [\App\Http\Controllers\IndexController::class, 'loraData']);
|
|
Route::get('/loraData2', [\App\Http\Controllers\IndexController::class, 'loraData2']);
|
|
Route::get('/loraDeviceList', [\App\Http\Controllers\IndexController::class, 'loraDeviceList']);
|
|
Route::get('/getSpecialCompare', [\App\Http\Controllers\IndexController::class, 'getSpecialCompare']);
|
|
|
|
Route::get('/getPelmaStore', [\App\Http\Controllers\IndexController::class, 'getPelmaStore']);
|
|
Route::post('/storePelma', [\App\Http\Controllers\IndexController::class, 'storePelma']);
|
|
|
|
Route::get('/getBlood', [\App\Http\Controllers\IndexController::class, 'getBlood']);
|
|
Route::get('/storeBlood', [\App\Http\Controllers\IndexController::class, 'storeBlood']);
|
|
|
|
|
|
|
|
|