['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'); });