clrghouz/routes/api.php

18 lines
580 B
PHP
Raw Normal View History

2018-11-15 10:45:49 +00:00
<?php
use Illuminate\Support\Facades\Route;
2021-08-09 13:35:22 +00:00
use App\Http\Controllers\{DomainController,SystemController,ZoneController};
2018-11-15 10:45:49 +00:00
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::get('/domain/daily',[DomainController::class,'api_daily_stats']);