You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
726 B

3 years ago
3 years ago
3 years ago
  1. @extends('layout')
  2. @section('main')
  3. <div class="container is-fluid">
  4. <h2 class="title is-4 is-spaced mt-6 mb-1">
  5. Buckets
  6. <a class="button is-small ml-3" href="/bucket/create">
  7. Create
  8. <span class="icon">
  9. <svg aria-hidden="true">
  10. <use xlink:href="/symbol-defs.svg#icon-add-circle"></use>
  11. </svg>
  12. </span>
  13. </a>
  14. </h2>
  15. <hr class="mt-2" />
  16. <buckets></buckets>
  17. </div>
  18. @push('scripts')
  19. <script type="text/javascript" src="/js/home.js"></script>
  20. <script type="text/javascript" defer>
  21. riot.mount('buckets', {!! json_encode([ 'buckets' => $buckets ]) !!});
  22. </script>
  23. @endpush
  24. @endsection