An api requested by WePost for air shipment for inbound notification

This commit is contained in:
Dillon Ngo
2023-12-02 16:59:54 +08:00
parent c493b3786c
commit 3098bc7d18
8 changed files with 410 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\WePost;
use App\Classes\Modules\WePost\ControllersLogic\ProcessWePostNotificationLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class ProcessWePostNotificationController
{
/**
* @param Request $request
* @param ProcessWePostNotificationLogic $logic
* @return JsonResponse
*/
public function process(Request $request, ProcessWePostNotificationLogic $logic): JsonResponse
{
return $logic->execute($request);
}
}