home.blade.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @extends('admin.partial.template-full')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold d-inline-block">Discover</h3>
  5. <span class="float-right">
  6. <a class="btn btn-outline-primary btn-sm py-1" href="{{route('admin.discover.create-category')}}">Create</a>
  7. </span>
  8. </div>
  9. <hr>
  10. <ul class="list-group">
  11. @foreach($categories as $category)
  12. <li class="list-group-item">
  13. <div class="d-flex justify-content-between align-items-center">
  14. <div>
  15. <a class="font-weight-lighter small mr-3" href="/i/admin/media/show/{{$category->id}}">{{$category->id}}</a>
  16. <a href="{{$category->url()}}">
  17. <img class="" src="{{$category->thumb()}}" width="60px" height="60px">
  18. </a>
  19. </div>
  20. <div>
  21. <p class="lead mb-0">{{$category->slug}}</p>
  22. </div>
  23. <div>
  24. <div class="d-inline-block text-center px-3">
  25. <p class="h3 mb-0 font-weight-lighter">{{$category->hashtags()->count()}}</p>
  26. <p class="mb-0 small font-weight-light text-muted">Hashtags</p>
  27. </div>
  28. <div class="d-inline-block text-center px-3">
  29. <p class="h3 mb-0 font-weight-lighter">{{$category->posts()->count()}}</p>
  30. <p class="mb-0 small font-weight-light text-muted">Posts</p>
  31. </div>
  32. </div>
  33. <div>
  34. @if($category->active)
  35. <span class="badge badge-success mr-3">Active</span>
  36. @endif
  37. <a class="btn btn-outline-secondary btn-sm py-0 mr-3" href="{{$category->editUrl()}}">Edit</a>
  38. <a class="btn btn-outline-secondary btn-sm py-0" href="{{$category->url()}}">View</a>
  39. </div>
  40. </div>
  41. </li>
  42. @endforeach
  43. </ul>
  44. <hr>
  45. <div class="d-flex justify-content-center">
  46. {{$categories->links()}}
  47. </div>
  48. @endsection