urlsnail/resources/views/bookmarks/show.blade.php
Annika Backstrom 0b1fe6d491
Remove Livewire
Seems like overkill for this stage of things. It's also not clear to me
how to use Livewire for only a subset of interactive functionality on
the page.
2024-05-26 13:02:44 +01:00

9 lines
190 B
PHP

@extends('layouts.app')
@section('content')
<p>
<a href="{{ action('BookmarkController@index') }}">&larr; Back</a>
</p>
<x-bookmark :bookmark="$bookmark" />
@endsection