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.

20 lines
557 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. @extends('layout')
  2. @section('head')
  3. <meta name="csrf-token" content="{{ csrf_token() }}">
  4. @endsection
  5. @section('main')
  6. <div class="container is-fluid">
  7. <h1 class="title is-3 is-spaced">
  8. {{ $bucket->name }}
  9. </h1>
  10. <urban-filemanager></urban-filemanager>
  11. </div>
  12. @push('scripts')
  13. <script type="text/javascript" src="/js/bucket-single.js"></script>
  14. <script type="text/javascript" defer>
  15. riot.mount('urban-filemanager', {!! json_encode([ 'files' => $files, 'id' => $bucket->id ]) !!});
  16. </script>
  17. @endpush
  18. @endsection