create.blade.php 537 B

123456789101112131415161718192021222324
  1. @extends('layouts.app')
  2. @section('content')
  3. <collection-compose collection-id="{{$collection->id}}" profile-id="{{Auth::user()->profile_id}}"></collection-compose>
  4. @endsection
  5. @push('styles')
  6. <style type="text/css">
  7. </style>
  8. @endpush
  9. @push('scripts')
  10. <script type="text/javascript" src="{{ mix('js/collectioncompose.js') }}"></script>
  11. <script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
  12. <script type="text/javascript">
  13. $(document).ready(function() {
  14. new Vue({
  15. el: '#content'
  16. });
  17. });
  18. </script>
  19. @endpush