A lot of things.

This commit is contained in:
2026-06-08 16:25:52 +02:00
parent 6f6d6b9b84
commit f529f74823
94 changed files with 9178 additions and 107 deletions

View File

@@ -0,0 +1,25 @@
@extends('layouts.app')
@section('page-title', "My Drafts - " . config('app.name'))
@section('content')
<div class="page-title">
My Drafts
</div>
@if($drafts->isEmpty())
<div class="drafts-empty">
<i data-lucide="pen" size="48"></i>
<p>No drafts here</p>
</div>
@else
<div class="drafts-count">
<span>{{ $drafts->total() }} draft{{ $drafts->total() > 1 ? 's' : '' }}</span>
</div>
<div class="drafts-list">
@foreach($drafts as $draft)
@include('entries.draft_item', ['entry' => $draft])
@endforeach
</div>
{{ $drafts->links() }}
@endif
@endsection