Skip to content

Commit

Permalink
change user status variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Dilan032 committed Aug 25, 2024
1 parent 96f546e commit d38df76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/superAdmin/editUser.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<a href="{{ route('superAdmin.user.details',$admins->id) }}">
<div class="p-3 mb-2 bg-primary-subtle text-primary-emphasis userList rounded">
<div class="text-start">
<span class="badge text-bg-{{ $user->status == 'active' ? 'success' : 'secondary' }}">{{ $admins->status }}</span>
<span class="badge text-bg-{{ $admins->status == 'active' ? 'success' : 'secondary' }}">{{ $admins->status }}</span>
<span class="badge text-bg-dark">{{ $admins->user_type }}</span> <br>
{{ $admins->name }} <br>
</div>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/superAdmin/messageOne.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
{{-- bank Details --}}
<div class="container">
<div class="row mb-5 mt-5 px-3 d-flex justify-content-evenly">
<div class="col-md-5">
<div class="col-md-6">
<h4>Bank Details</h4>
<p>
<div class="p-1 mb-1 bg-white text-dark rounded shado">
Expand All @@ -214,7 +214,7 @@
</div>
</p>
</div>
<div class="col-md-5">
<div class="col-md-6">
<h4 class="mt-5 mt-md-0">Message Sender Details</h4>
<p>
<div class="p-1 mb-1 bg-white text-dark rounded shado">
Expand Down

0 comments on commit d38df76

Please sign in to comment.