Skip to content

Commit 8ecb344

Browse files
author
Abdul Vakeel
committed
update admin panel
1 parent e53e6a1 commit 8ecb344

File tree

9 files changed

+23
-7
lines changed

9 files changed

+23
-7
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace App\Http\Controllers;
4+
5+
use App\Models\Investment;
6+
use Illuminate\Http\Request;
7+
8+
class InvestmentController extends Controller
9+
{
10+
11+
}

app/Models/Investment.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace App\Models;
4+
5+
use Illuminate\Database\Eloquent\Factories\HasFactory;
6+
use Illuminate\Database\Eloquent\Model;
7+
8+
class Investment extends Model
9+
{
10+
use HasFactory;
11+
}

resources/js/Pages/Admin/Dashboard/AdminDashboard.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
File Name: admin dashboard
55
66
----------------------------------------------------------------------------------------
7-
Item Name: Sky Matrix
87
Author: Sky Code Lab
98
Author URL: https://www.skycodelab.io/
109
==========================================================================================*/

resources/js/Pages/Admin/Profile/Show.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
File Name: show profile
55
66
----------------------------------------------------------------------------------------
7-
Item Name: Sky Matrix
87
Author: Sky Code Lab
98
Author URL: https://www.skycodelab.io/
109
==========================================================================================*/

resources/js/Pages/Admin/Staffs/Index.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
File Name: Staff setting
55
66
----------------------------------------------------------------------------------------
7-
Item Name: Sky Matrix
87
Author: Sky Code Lab
98
Author URL: https://www.skycodelab.io/
109
==========================================================================================*/

resources/js/Pages/Auth/Login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

2+
23
<script setup>
34
/*=========================================================================================
45
File Name: login
56
67
----------------------------------------------------------------------------------------
7-
Item Name: Sky Matrix
88
Author: Sky Code Lab
99
Author URL: https://www.skycodelab.io/
1010
==========================================================================================*/

resources/js/Pages/Auth/Register.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ const showPasswordTextconfirmation = ref(false);
3838
File Name: register
3939
4040
----------------------------------------------------------------------------------------
41-
Item Name: Sky Matrix
4241
Author: Sky Code Lab
4342
Author URL: https://www.skycodelab.io/
4443
==========================================================================================*/

resources/js/Pages/Profile/Show.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
File Name: show profile
55
66
----------------------------------------------------------------------------------------
7-
Item Name: Sky Matrix
87
Author: Sky Code Lab
98
Author URL: https://www.skycodelab.io/
109
==========================================================================================*/

resources/js/Pages/User/Dashboard/UserDashboard.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
File Name: user dashboard
55
66
----------------------------------------------------------------------------------------
7-
Item Name: Sky Matrix
87
Author: Sky Code Lab
98
Author URL: https://www.skycodelab.io/
109
==========================================================================================*/

0 commit comments

Comments
 (0)