<?php
/**
* Short description for the file.
*
* @copyright (c) 2012-2015, Komma
*/
namespace App\KommaApp\Ajax;
use App\Http\Controllers\Controller;
class AjaxController extends Controller
{
public function getTemplate($template){
return \View::make('ajax/'.$template);
}
}