2024-05-25 12:47:48 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
2024-05-26 12:02:44 +00:00
|
|
|
<p>
|
|
|
|
<a href="{{ action('BookmarkController@index') }}">← Back</a>
|
|
|
|
</p>
|
2024-05-26 11:55:04 +00:00
|
|
|
<x-bookmark :bookmark="$bookmark" />
|
2024-05-26 12:48:04 +00:00
|
|
|
<p>
|
|
|
|
<a href="{{ action('BookmarkController@edit', ['bookmark' => $bookmark]) }}">edit</a>
|
|
|
|
</p>
|
2024-05-25 12:47:48 +00:00
|
|
|
@endsection
|