diff --git a/resources/views/bookmarks/show.blade.php b/resources/views/bookmarks/show.blade.php new file mode 100644 index 00000000..a9497bd6 --- /dev/null +++ b/resources/views/bookmarks/show.blade.php @@ -0,0 +1,19 @@ +@extends('master') + +@section('title') +Bookmark « +@stop + +@section('content') +
+ + @isset($bookmark->name) + {{ $bookmark->name }} + @endisset + + @empty($bookmark->name) + {{ $bookmark->url }} + @endempty + +
+@stop