promo admin

This commit is contained in:
CHIEFSOFT\ameye
2024-11-16 10:12:05 -05:00
parent a838c82e8b
commit 06b369405e
139 changed files with 86934 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App\Controllers;
class Auth extends BaseController
{
public function index(): string
{
return view('welcome_message');
}
public function AuthPromoAdmin(){
// echo 'Ameye Olusesan';
$out=[];
return view('promo_admin_home', $out);
}
}