This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/app/Http/Controllers/GUI/PublicController.php
2019-04-24 18:46:41 +00:00

24 lines
475 B
PHP

<?php
namespace App\Http\Controllers\GUI;
use App\Http\Controllers\Controller;
use App\Models\App;
use Illuminate\Support\Facades\Log;
class PublicController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function index()
{
$apps = App::query()->where("show_on_webpage", "=", 1)->get();
Log::debug("TEST");
return view('index', ["msg"=>"", "apps" => $apps]);
}
//
}