routes.php 1.32 KB
<?php

/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/



Route::get('/', function () {
    return view('welcome');
});


Route::get('pdf/{id}', 'PdfController@pdf');


Route::group(array('prefix' => 'api/v1'), function($json)
{

    Route::resource('add', 'ApiController@insert');

    Route::resource('get-list', 'ApiController@getList');
    Route::resource('get-pdf', 'ApiController@getpdf');
    Route::resource('api', 'FileEntryController@getApi');

});

Route::any('api/update',   'ApiController@update');

Route::any('fileentry/postUpload',  'FileEntryController@postUpload');

Route::get('fileentry/get/{filename}', [
    'as' => 'getentry', 'uses' => 'FileEntryController@get']);


Route::get('fileentry', 'FileEntryController@index');
Route::get('fileentry/getImage/{folder}/{filename}',  'FileEntryController@getImage');
Route::get('fileentry/getPDF/{folder}/{filename}',  'FileEntryController@getPDF');

Route::post('fileentry/add',[
    'as' => 'addentry', 'uses' => 'FileEntryController@add']);