Skip to content

Commit

Permalink
feat(uuid): add uuid to admin
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamadreza1388 committed Sep 12, 2024
1 parent 9dd8bca commit f9089bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/views/admin/codes/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<thead>
<tr>
<th>ایدی</th>
<th>شناسه</th>
<th>ایدی کاربر</th>
<th>کد</th>
<th>عنوان</th>
Expand All @@ -27,6 +28,7 @@
@foreach($codes as $code)
<tr class="@if($code["user_id"] === user()["id"]) bg-success-subtle @endif">
<td>{{ $code["id"] }}</td>
<td>{{ $code["uuid"] }}</td>
<td>{{ $code["user_id"] }}</td>
<td>{{ substr($code["code"], 0, 25) }}</td>
<td>{{ substr($code["title"], 0, 25) }}</td>
Expand Down

0 comments on commit f9089bf

Please sign in to comment.