home.blade.php 985 B

123456789101112131415161718192021222324252627282930313233343536
  1. @extends('admin.partial.template-full')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold d-inline-block">Messages</h3>
  5. </div>
  6. <hr>
  7. <div class="table-responsive">
  8. <table class="table">
  9. <thead class="bg-light">
  10. <tr>
  11. <th scope="col">#</th>
  12. <th scope="col">User</th>
  13. <th scope="col">Message</th>
  14. <th scope="col">Created</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. @foreach($messages as $msg)
  19. <tr>
  20. <td>
  21. <a href="/i/admin/messages/show/{{$msg->id}}" class="btn btn-sm btn-outline-primary">
  22. {{$msg->id}}
  23. </a>
  24. </td>
  25. <td class="font-weight-bold"><a href="{{$msg->user->url()}}">{{$msg->user->username}}</a></td>
  26. <td class="font-weight-bold">{{str_limit($msg->message, 40)}}</td>
  27. <td class="font-weight-bold">{{$msg->created_at->diffForHumans()}}</td>
  28. </tr>
  29. @endforeach
  30. </tbody>
  31. </table>
  32. </div>
  33. {{$messages->links()}}
  34. @endsection