@extends('layouts.app') @section('content')

My Bookmarked News


@if($bookmarks->isEmpty())

You haven't bookmarked any news yet.

@else
@foreach($bookmarks as $bookmark) @if($bookmark->newsPost)
@if($bookmark->newsPost->image) @endif
{{ $bookmark->newsPost->title }}
Read
@csrf
@endif @endforeach
@endif
@endsection