This commit is contained in:
CHIEFSOFT\ameye
2023-12-17 20:11:35 -05:00
parent e1b16fbc3b
commit 2dc139c8eb
5 changed files with 30 additions and 106 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class DashController extends Controller
{
//
public function general(){
$lresult = [
"profile" =>[
"firstname" => "admin",
"lastname" => "admin2",
"email" => "admin@admin.com",
"added" => "10-10-2023",
"last_login" => "10-10-2021",
"uid" => "79ca8829-cd03-4786-8e80-75d3ab4c34fb"
],
"token"=> 'aac93629-a2c6-43ae-991f-149e796a3c76'
];
return $lresult;
}
}