mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-01-20 11:00:38 -06:00
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Wiki;
|
|
use App\Models\WikiCategory;
|
|
|
|
class WikiController extends Controller
|
|
{
|
|
/**
|
|
* Display All Wikis.
|
|
*/
|
|
public function index(): \Illuminate\Contracts\View\View|\Illuminate\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\Foundation\Application
|
|
{
|
|
return view('wiki.index', [
|
|
'wiki_categories' => WikiCategory::query()
|
|
->orderBy('position')
|
|
->with([
|
|
'wikis' => fn ($query) => $query->orderBy('name'),
|
|
])
|
|
->get(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show A Wiki.
|
|
*/
|
|
public function show(Wiki $wiki): \Illuminate\Contracts\View\View|\Illuminate\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\Foundation\Application
|
|
{
|
|
return view('wiki.show', [
|
|
'wiki' => $wiki,
|
|
]);
|
|
}
|
|
}
|