Skip to content

Commit

Permalink
add shopify admin
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Dec 9, 2024
1 parent aef8777 commit bfbcc7f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions src/Http/Controllers/Api/V1/Admin/ProductsController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

namespace NexaMerchant\Shopify\Http\Controllers\Api\V1\Admin;

use NexaMerchant\Shopify\Http\Controllers\Api\Controller;

class ProductsController extends Controller
{
public function index()
{

}

/**
*
* sync products from shopify to nexamerchant
*
* @param int $id
*
* @return \Illuminate\Http\Response
*
* @throws \Exception
*
*/
public function sync($id) {

}
}
2 changes: 1 addition & 1 deletion src/Http/Controllers/Api/V1/OrdersController.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ class OrdersController extends Controller
{
public function index()
{
return response()->json(['message' => 'OrdersController@index']);

}
}

0 comments on commit bfbcc7f

Please sign in to comment.