File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
packages/Webkul/Admin/src Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class="block w-full rounded-3xl border bg-white px-10 py-1.5 leading-6 text-gray
80
80
<!-- Link to send new Mail-->
81
81
@if (bouncer ()-> hasPermission (' mail.create' ) )
82
82
<div class =" rounded-lg bg-white p-2 hover:bg-gray-100" >
83
- <a href =" {{ route (' admin.mail.index' , [' route' => ' compose ' ]) } }" >
83
+ <a href =" {{ route (' admin.mail.index' , [' route' => ' inbox ' ]) } }" >
84
84
<div class =" flex flex-col gap-1" >
85
85
<i class =" icon-mail text-2xl text-gray-600" ></i >
86
86
@@ -158,7 +158,7 @@ class="block w-full rounded-3xl border bg-white px-10 py-1.5 leading-6 text-gray
158
158
<!-- Link to create new User-->
159
159
@if (bouncer ()-> hasPermission (' settings.user.users.create' ) )
160
160
<div class =" rounded-lg bg-white p-2 hover:bg-gray-100" >
161
- <a href =" {{ route (' admin.settings.users.create ' ) } }" >
161
+ <a href =" {{ route (' admin.settings.users.index ' ) } }" >
162
162
<div class =" flex flex-col gap-1" >
163
163
<i class =" icon-user text-2xl text-gray-600" ></i >
164
164
Original file line number Diff line number Diff line change @@ -76,9 +76,10 @@ class="row grid items-center gap-2.5 border-b px-4 py-4 text-gray-600 transition
76
76
< p> @ {{ record .id }}< / p>
77
77
78
78
<!-- Attachments -->
79
- < p : class = " record.attachments ? 'icon-attachmetent' : ''" >
80
- @ {{ record .attachments ?? ' N/A' }}
81
- < / p>
79
+ < p
80
+ : class = " record.attachments ? 'icon-attachmetent' : ''"
81
+ v- html= " record.attachments"
82
+ >< / p>
82
83
83
84
<!-- Name -->
84
85
< p> @ {{ record .name }}< / p>
Original file line number Diff line number Diff line change 148
148
Route::controller (UserController::class)->prefix ('users ' )->group (function () {
149
149
Route::get ('' , 'index ' )->name ('admin.settings.users.index ' );
150
150
151
- Route::get ('create ' , 'create ' )->name ('admin.settings.users.create ' );
152
-
153
151
Route::post ('create ' , 'store ' )->name ('admin.settings.users.store ' );
154
152
155
153
Route::get ('edit/{id?} ' , 'edit ' )->name ('admin.settings.users.edit ' );
You can’t perform that action at this time.
0 commit comments