Daniel Supernault 6 년 전
부모
커밋
afddd0bcb3
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      resources/views/collection/show.blade.php

+ 11 - 0
resources/views/collection/show.blade.php

@@ -8,6 +8,17 @@
 			<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">