1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/routes/shop.php

14 lines
637 B
PHP
Raw Normal View History

2020-07-28 13:19:51 +02:00
<?php
use Illuminate\Support\Facades\Route;
Route::group(['middleware' => ['company_key_db', 'locale'], 'prefix' => 'api/v1'], function () {
Route::get('shop/products', 'Shop\ProductController@index');
Route::post('shop/clients', 'Shop\ClientController@store');
Route::post('shop/invoices', 'Shop\InvoiceController@store');
Route::get('shop/client/{contact_key}', 'Shop\ClientController@show');
Route::get('shop/invoice/{invitation_key}', 'Shop\InvoiceController@show');
Route::get('shop/product/{product_key}', 'Shop\ProductController@show');
Route::get('shop/profile', 'Shop\ProfileController@show');
});