-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathshow.blade.php
27 lines (25 loc) · 967 Bytes
/
show.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@extends('layouts.app')
@section('title', '- Home Page')
@section('content')
<section class="section">
<div class="container">
<div class="level">
<div class="level-left">
<h2 class="title is-2">{{ $tag->name }}</h2>
</div>
<div class="level-right">
<form action="{{ route('tags.destroy', $tag) }}" method="POST">
<a class="button is-primary is-outlined is-light" href="{{ route('tags.edit', $tag) }}">edit</a>
@csrf
@method('DELETE')
<input type="submit" value="delete" class="button is-danger is-outlined is-light">
</form>
</div>
</div>
</div>
<hr>
<div class="columns is-multiline">
@each('partials.post', $tag->posts, 'post')
</div>
</section>
@endsection