osb/routes/api.php

17 lines
519 B
PHP
Raw Normal View History

2017-11-03 05:26:07 +00:00
<?php
2024-07-26 02:34:35 +00:00
use Illuminate\Support\Facades\Route;
2023-05-13 11:20:56 +00:00
use Intuit\Controllers\Webhook;
2017-11-03 05:26:07 +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!
2017-11-03 05:26:07 +00:00
|
*/
2023-05-13 11:20:56 +00:00
Route::any('/intuit/webhook',[Webhook::class,'webhook']);