tethys/app/Http/routes.php

26 lines
943 B
PHP
Raw Normal View History

2015-07-19 06:49:24 +00:00
<?php
2018-08-06 12:30:51 +00:00
use App\Dataset;
use Illuminate\Support\Facades\Route;
2015-07-19 06:49:24 +00:00
/*
|--------------------------------------------------------------------------
| 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.
|
2018-08-06 12:30:51 +00:00
*/
// Route::get('/api/dropdown/peminjaman/{id}', [
// 'as' => 'api.dropdown.peminjaman', 'uses' => 'PeminjamanController@dropdown'
// ]);
Route::get('/api/dropdown/borrow/{id}', function ($id) {
if (Request::ajax()) {
//$category_id = Input::get('category_id');
// $books = Book::available()->orderByTitle()->where('category_id', '=', $id)->get();
$books = Dataset::OrderByType()->where('project_id', '=', $id)->get();
return Response::json($books);
}
2015-07-19 06:49:24 +00:00
});