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.

24 lines
464 B

3 years ago
  1. @extends('layout')
  2. @section('main')
  3. <div class="container">
  4. <h2>
  5. Buckets
  6. <button class="button">
  7. Create
  8. </button>
  9. </h2>
  10. <h3>
  11. </h3>
  12. <app-buckets></app-buckets>
  13. </div>
  14. @push('scripts')
  15. <script type="text/javascript" src="js/buckets.js"></script>
  16. <script type="text/javascript" defer>
  17. riot.mount('buckets', {!! json_encode([ 'buckets' => $buckets ]) !!});
  18. </script>
  19. @endpush
  20. @endsection