message.blade.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @extends('admin.layout.master')
  2. @section('main_content')
  3. @include('admin.layout.nav')
  4. @include('admin.layout.sidebar')
  5. <div class="main-content">
  6. <section class="section">
  7. <div class="section-header justify-content-between">
  8. <h1>Messages</h1>
  9. </div>
  10. <div class="section-body">
  11. <div class="row">
  12. <div class="col-12">
  13. <div class="card">
  14. <div class="card-body">
  15. <div class="table-responsive">
  16. <table class="table table-bordered" id="example1">
  17. <thead>
  18. <tr>
  19. <th>SL</th>
  20. <th>User Photo</th>
  21. <th>User Name</th>
  22. <th>User Email</th>
  23. <th>User Phone</th>
  24. <th>Action</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. @foreach($messages as $item)
  29. <tr>
  30. <td>{{ $loop->iteration }}</td>
  31. <td>
  32. @if($item->user->photo != '')
  33. <img src="{{ asset('uploads/'.$item->user->photo) }}" alt="" class="w_100">
  34. @else
  35. <img src="{{ asset('uploads/default.png') }}" alt="" class="w_100">
  36. @endif
  37. </td>
  38. <td>
  39. {{ $item->user->name }}
  40. </td>
  41. <td>
  42. {{ $item->user->email }}
  43. </td>
  44. <td>
  45. {{ $item->user->phone }}
  46. </td>
  47. <td class="pt_10 pb_10">
  48. <a href="{{ route('admin_message_detail',$item->id) }}" class="btn btn-primary">Messages</a>
  49. </td>
  50. </tr>
  51. @endforeach
  52. </tbody>
  53. </table>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </section>
  61. </div>
  62. @endsection