This commit is contained in:
2025-07-26 13:25:50 +05:00
commit 69dd14e06c
311 changed files with 50685 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Http\Controllers;
class HomePageController extends Controller
{
public function index()
{
return view('web.pages.home.index');
}
}