mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-21 13:34:16 +00:00
65 lines
2.3 KiB
PHP
65 lines
2.3 KiB
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Company;
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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!
|
|
|
|
|
*/
|
|
|
|
/* Authentication */
|
|
Route::post('login', 'AuthController@login');
|
|
|
|
//Route::post('recover', 'AuthController@recover');
|
|
//
|
|
//Route::group(['middleware' => ['jwt.auth']], function() {
|
|
// Route::get('logout', 'AuthController@logout');
|
|
// Route::get('test', function(){
|
|
// return response()->json(['foo'=>'bar']);
|
|
// });
|
|
//});
|
|
|
|
Route :: post('/warehouse','WarehouseController@store');
|
|
Route :: get('/warehouse/{war_id}','WarehouseController@show');
|
|
Route :: put('/warehouse/{war_id}','WarehouseController@update');
|
|
Route :: get('/warehouse','WarehouseController@index');
|
|
|
|
|
|
|
|
Route :: delete('/contacts/{contacts_id}','ContactController@destroy');
|
|
Route :: get('/contacts','ContactController@index');
|
|
//Route :: post('/contacts','ContactController@store');
|
|
|
|
|
|
Route::post('password/recover', 'AuthController@recover');
|
|
Route::post('password/reset', 'AuthController@reset');
|
|
Route::post('send-verification', 'AuthController@sendVerification');
|
|
Route::post('verify-phone', 'AuthController@verifyPhone');
|
|
|
|
|
|
Route::group(['middleware' => ['jwt.auth']], function() {
|
|
Route::get('logout', 'AuthController@logout');
|
|
Route::patch('user', 'AuthController@updateUser');
|
|
Route::get('test', function(Request $request){
|
|
return response()->json(['user'=> $request->user()]);
|
|
});
|
|
|
|
/* Company */
|
|
Route::patch('/company', 'CompanyController@update'); //update company information
|
|
Route::post('/company/company_profile/', 'CompanyController@companyProfile');//upload company profile picture
|
|
Route::post('/company/reg_cert/', 'CompanyController@regCert'); //upload registration certificaate
|
|
|
|
/* Contacts */
|
|
Route::get('/company/search', 'CompanyController@search');
|
|
//Route::get('/company/search/{company_name}', 'CompanyController@search');//search company in contacts
|
|
Route::post('/contacts/{company_id}/request', 'ContactController@postApprove');
|
|
//Route::post()
|
|
});
|
|
|