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