show.blade.php 950 B

123456789101112131415161718192021222324252627282930313233343536
  1. @extends('admin.partial.template-full')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Status #{{$status->id}}</h3>
  5. </div>
  6. <hr>
  7. <div>
  8. <div class="btn-group" role="group">
  9. <button type="button" class="btn btn-outline-secondary">View Details</button>
  10. <button type="button" class="btn btn-outline-secondary">View User Stats</button>
  11. <button type="button" class="btn btn-outline-danger">Delete</button>
  12. </div>
  13. </div>
  14. @php($item = $status)
  15. @include('status.template')
  16. @endsection
  17. @push('scripts')
  18. <script type="text/javascript">
  19. $(document).ready(function() {
  20. $('.human-size').each(function(d,a) {
  21. let el = $(a);
  22. let size = el.data('bytes');
  23. el.text(filesize(size, {round: 0}));
  24. });
  25. $('.status-card .card-footer').hide();
  26. $('.status-card .reactions').hide();
  27. $('.status-card .comments').hide();
  28. });
  29. </script>
  30. @endpush