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