/home/techb158/immovalet.com/platform/plugins/blog/routes
Edit: /home/techb158/immovalet.com/platform/plugins/blog/routes/api.php (631B)
'api',
'prefix' => 'api/v1',
'namespace' => 'Botble\Blog\Http\Controllers\API',
], function () {
Route::get('search', 'PostController@getSearch');
Route::get('posts', 'PostController@index');
Route::get('categories', 'CategoryController@index');
Route::get('tags', 'TagController@index');
Route::get('posts/filters', 'PostController@getFilters');
Route::get('posts/{slug}', 'PostController@findBySlug');
Route::get('categories/filters', 'CategoryController@getFilters');
Route::get('categories/{slug}', 'CategoryController@findBySlug');
});