18 lines
332 B
Plaintext
18 lines
332 B
Plaintext
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This is publicly accessible
|
||
|
*/
|
||
|
Route::group(['middleware' => []], function() {
|
||
|
Route::get('/', '$STUDLY_NAME$Controller@index');
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* This is required to have a valid API key
|
||
|
*/
|
||
|
Route::group(['middleware' => [
|
||
|
'api.auth'
|
||
|
]], function() {
|
||
|
Route::get('/hello', '$STUDLY_NAME$Controller@hello');
|
||
|
});
|