Skip to content

Commit 1d48c5a

Browse files
committed
fix: payments history page and training sidebar
1 parent c488635 commit 1d48c5a

File tree

3 files changed

+3
-22
lines changed

3 files changed

+3
-22
lines changed

resources/views/frontend/layouts/app.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class="d-inline-block px-2 pb-1" style="cursor: pointer;">
127127

128128

129129
<div class="row">
130-
<div id="auth-sidebar" class="d-none d-lg-block col-6 col-sm-4 col-xl-2 p-0 position-relative">
130+
<div id="auth-sidebar" class="bg-light d-none d-lg-block col-6 col-sm-4 col-xl-2 ps-4 pe-2 position-relative">
131131
{{-- Sidebar 2 -> user dashboard navigation --}}
132132
@auth
133133
<div class="sidebar sidebar-2 col-6 col-sm-4 col-xl-2 p-0">

resources/views/frontend/layouts/sidebar.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class="sidebar-item {{ url()->current() == url("/service/category/$category->id"
5757
</li>
5858
<li class="sidebar-item {{ request()->routeIs('page.training') ? 'active' : '' }}">
5959
<div class="d-flex justify-content-between align-items-center">
60-
<a class="" href="{{ route('page.training') }}">Training/Education</a>
60+
<a class="" href="{{ route('course.index') }}">Training/Education</a>
6161
<span class="mdi mdi-chevron-down-box-outline dropdown-click-trigger rounded px-1 bg-light"
6262
data-target="#training-education"
6363
style="font-size: 20px; color: var(--bs-gray-600); cursor:pointer;"></span>

resources/views/frontend/pages/myPayments.blade.php

+1-20
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<th class="">No</th>
1111
<th class="">Name</th>
1212
<th class="">Price</th>
13-
<th class="">Trainer</th>
1413
<th class="">Action</th>
1514
</tr>
1615
</thead>
@@ -19,8 +18,7 @@
1918
<tr>
2019
<td>{{ ++$key }}</td>
2120
<td>
22-
23-
<a href="{{ route('video.byCourse', $course->id) }}"
21+
<div
2422
class="gap-2 d-flex align-items-start text-reset">
2523
<div>
2624
<span data-feather="folder" class="icon-dual"></span>
@@ -34,23 +32,6 @@ class="gap-2 d-flex align-items-start text-reset">
3432
<td>
3533
{{ $course->price }}
3634
</td>
37-
<td>
38-
<div class="gap-2 d-flex align-items-start">
39-
<div>
40-
<img loading="lazy" src="{{ asset('backend/assets/images/users/user-1.jpg') }}"
41-
class="rounded rounded-circle" width="48px" height="48px" alt="">
42-
</div>
43-
<div>
44-
<div class="fw-medium">
45-
<a href="javascript: void(0);"
46-
class="text-reset">{{ fake()->name('female') }}</a>
47-
</div>
48-
<span>{{ fake()->jobTitle() }}</span>
49-
</div>
50-
</div>
51-
</td>
52-
53-
5435
<td>
5536
<div>
5637
<x-backend.ui.button type="custom" class="btn-sm text-capitalize btn-dark "

0 commit comments

Comments
 (0)