summaryrefslogtreecommitdiff
path: root/resources/views/links/show.blade.php
blob: c70f459a7de224e68ef4e43d525c5e8924fd1441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@extends('template')

@section('head')
<link rel="stylesheet" href="/css/style.css">
@endsection

@section('content')
    <main>
        <a href = "{{ $link->url }}">
        <h1>{{ $link->label }}</h1>
        <h3>{{ $link->url }}</h3></a>
        <h5> tags</h5>
        @if(Auth::id() === $link->user()->get()[0]->id)
            <div class="link-actions">
                TODO -- edit link
            </div>
        @endif
    </main>
@endsection