1
0
Fork 0

Update collection view

This commit is contained in:
Daniel Supernault 2019-08-02 23:28:40 -06:00
parent 69ab8e9431
commit 8732578e43
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 11 additions and 33 deletions

View File

@ -3,42 +3,20 @@
@section('content')
<div class="container">
<div class="row">
<div class="col-12 mt-5 py-5">
<div class="text-center">
<h1>Collection</h1>
<h4 class="text-muted">{{$collection->title}}</h4>
@auth
@if($collection->profile_id == Auth::user()->profile_id)
<div class="text-right">
<form method="post" action="/api/local/collection/{{$collection->id}}">
@csrf
<input type="hidden" name="_method" value="DELETE">
<button type="submit" class="btn btn-outline-danger font-weight-bold btn-sm py-1">Delete</button>
</form>
</div>
@endif
@endauth
</div>
</div>
<div class="col-12">
<collection-component collection-id="{{$collection->id}}"></collection-component>
</div>
</div>
<collection-component
collection-id="{{$collection->id}}"
collection-title="{{$collection->title}}"
collection-description="{{$collection->description}}"
collection-visibility="{{$collection->visibility}}"
profile-id="{{$collection->profile_id}}"
profile-username="{{$collection->profile->username}}"
></collection-component>
</div>
@endsection
@push('styles')
<style type="text/css">
</style>
@endpush
@push('scripts')
<script type="text/javascript" src="{{mix('js/compose.js')}}"></script>
<script type="text/javascript" src="{{mix('js/collections.js')}}"></script>
<script type="text/javascript">
new Vue({
el: '#content'
})
</script>
<script type="text/javascript" src="{{mix('js/compose.js')}}" async></script>
<script type="text/javascript" src="{{mix('js/collections.js')}}"></script>
<script type="text/javascript">App.boot()</script>
@endpush