@extends('client.users.profile') @section('template_title') {{ __('Danh sách dấu trang') }} @endsection @section('user_content') @php $isMyAccount = isMyAccount($currentUser, $user); @endphp
@if($message = session('bookmark_success')) @endif
@if ($bookmarks->isEmpty()) @endif @foreach ($bookmarks as $bookmark) @if (!$bookmark->is_public && !$isMyAccount) @continue @endif @php $article = $bookmark->article; @endphp @endforeach
Truyện Chương mới nhất Tên dấu trang Mô tả về dấu trang Ngày tạo Ngày sửa
Chưa có bookmark nào
Đây là bookmark riêng tư nên đã bị ẩn đi
{{ $article->title }} {{ $article->title }} @if ($isMyAccount) @endif @php $newestChapter = $article->newest_chapter; $isEmptyNewestChapter = empty($newestChapter); @endphp @if ($isEmptyNewestChapter) Chưa có chương nào @else {{ $newestChapter->number_text }}
@endif
{{ $bookmark->name }} {{ $bookmark->description }} {{ $bookmark->created_at_text }} {{ $bookmark->updated_at_text }}
@endsection