forked from metin2/web
Added website Docker image, bumped PHP version, added mall authentication, added experimental patcher support, improved migrations, added teasers
This commit is contained in:
19
app/Http/Controllers/Patch/PatchLandingController.php
Normal file
19
app/Http/Controllers/Patch/PatchLandingController.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Patch;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\View\View;
|
||||
|
||||
class PatchLandingController extends Controller
|
||||
{
|
||||
public function home(): View
|
||||
{
|
||||
return view('patch/home');
|
||||
}
|
||||
|
||||
public function notice(): View
|
||||
{
|
||||
return view('patch/notice');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user