12 lines
314 B
PHP
12 lines
314 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<p>
|
|
<a href="{{ action('BookmarkController@index') }}">← Back</a>
|
|
</p>
|
|
<x-bookmark :$bookmark :show-permalink="false" />
|
|
<p>
|
|
<a href="{{ action('BookmarkController@edit', ['bookmark' => $bookmark]) }}">edit</a>
|
|
</p>
|
|
@endsection
|