Major incomplete Change

This commit is contained in:
Omair Saleh
2019-02-20 02:44:06 +08:00
parent a32927569c
commit 3d8c04d4f2
4 changed files with 72 additions and 8 deletions
+3
View File
@@ -27,6 +27,9 @@ Route::group(['middleware' => 'api', 'prefix' => 'v1', 'as' => 'api.'], function
// List companies
Route::get('/list', 'CompanyController@index')->name('list');
// search companies
Route::get('/search', 'CompanyController@search')->name('search');
// List single company
Route::get('{id}/profile', 'CompanyController@show')->name('profile');