package installer

This commit is contained in:
tanch0
2024-06-11 12:16:24 +05:45
parent c569ea1d0c
commit 97f00e8172
88 changed files with 15037 additions and 3657 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace App\Http\Controllers\Installer;
use Illuminate\Routing\Controller;
class WelcomeController extends Controller
{
/**
* Display the installer welcome page.
*
* @return \Illuminate\Http\Response
*/
public function welcome()
{
dd('test');
return view('vendor.installer.welcome');
}
}