Menu responsiveness and layout

This commit is contained in:
2020-02-01 00:40:25 +01:00
parent 433c9e7a77
commit 27dbd9bb0c
13 changed files with 105 additions and 29 deletions

View File

@@ -67,7 +67,7 @@ class Controller extends BaseController
protected function registerView(Request $request, $type, $id)
{
if(config('app.debug')) {
if(config('app.env') == 'local') {
return;
}

View File

@@ -29,7 +29,8 @@ class RadioController extends Controller
public function onair()
{
return response()->json($this->API('programma/schema/onair?nonstop=1'));
$data = $this->API('programma/schema/onair');
return response()->json($data);
}
public function program($id)