complete story 11.4 (documintation updates)

This commit is contained in:
Naser Mansour
2026-01-03 19:34:05 +02:00
parent b1e51e085a
commit 4de3f439b9
5 changed files with 141 additions and 39 deletions
+10 -2
View File
@@ -855,6 +855,7 @@ libra/
│ └── Services/ # Cross-cutting services
│ ├── AvailabilityService.php
│ ├── CalendarService.php
│ ├── CaptchaService.php
│ └── ExportService.php
├── config/
│ └── libra.php # App-specific config
@@ -895,7 +896,10 @@ libra/
│ │ │ ├── booking-rejected.blade.php
│ │ │ ├── consultation-reminder.blade.php
│ │ │ ├── timeline-updated.blade.php
│ │ │ ── new-booking-request.blade.php
│ │ │ ── new-booking-request.blade.php
│ │ │ ├── guest-booking-submitted.blade.php
│ │ │ ├── guest-booking-approved.blade.php
│ │ │ └── guest-booking-rejected.blade.php
│ │ ├── livewire/ # Volt single-file components
│ │ │ ├── admin/ # Admin area
│ │ │ │ ├── dashboard.blade.php
@@ -933,6 +937,7 @@ libra/
│ │ │ │ └── profile.blade.php
│ │ │ ├── pages/ # Public pages
│ │ │ │ ├── home.blade.php
│ │ │ │ ├── booking.blade.php # Guest booking form
│ │ │ │ ├── posts/
│ │ │ │ │ ├── index.blade.php
│ │ │ │ │ └── show.blade.php
@@ -983,6 +988,7 @@ libra/
│ │ │ └── ProfileTest.php
│ │ ├── Public/
│ │ │ ├── HomePageTest.php
│ │ │ ├── GuestBookingTest.php
│ │ │ ├── PostsTest.php
│ │ │ └── LanguageSwitchTest.php
│ │ └── Auth/
@@ -1994,6 +2000,7 @@ tests/
│ │ └── ProfileTest.php
│ ├── Public/
│ │ ├── HomePageTest.php
│ │ ├── GuestBookingTest.php
│ │ ├── PostsTest.php
│ │ └── LanguageSwitchTest.php
│ ├── Auth/ # Existing auth tests
@@ -2011,7 +2018,8 @@ tests/
│ └── TimelineTest.php
├── Services/
│ ├── AvailabilityServiceTest.php
── CalendarServiceTest.php
── CalendarServiceTest.php
│ └── CaptchaServiceTest.php
└── Enums/
└── ConsultationStatusTest.php
```