add pages

This commit is contained in:
2025-04-26 23:57:56 +05:00
parent 499649ea63
commit 0a32aa03d0
505 changed files with 15943 additions and 3 deletions

View File

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