@php $totalNotes = \App\Models\Note::count(); $totalCategories = \App\Models\Category::count(); $totalViews = \App\Models\Note::sum('view_count'); $premiumNotesCount = \App\Models\Note::where('is_paid', true)->count(); // Check if we are on a filtered view $isFiltered = request()->filled('search') || request()->filled('category'); if (!$isFiltered) { $trendingNotes = \App\Models\Note::orderBy('view_count', 'desc')->with('category')->limit(3)->get(); $premiumNotes = \App\Models\Note::where('is_paid', true)->orderBy('created_at', 'desc')->with('category')->limit(3)->get(); } else { $trendingNotes = collect(); $premiumNotes = collect(); } @endphp

Academic Archive

A curated vault of intellectual growth.

{{ $totalNotes }} Total Notes
{{ $totalCategories }} Classifications
{{ $totalViews > 1000 ? number_format($totalViews / 1000, 1) . 'k' : $totalViews }} Total Views
{{ $premiumNotesCount }} Premium Guides
@if(!$isFiltered)
Core Features

An Optimized Learning Environment

StudyXnote bridges structured academic curriculum with interactive, community-driven note indexing.

Structured Vault

Academic notes mapped precisely to grades and semester systems for organized browsing.

Visual Richness

High-fidelity image notes allow mapping diagrams, mindmaps, and handwritten study guides.

Verified Content

Admin-curated educational archives ensuring information accuracy and relevancy.

Premium Access

A specialized tier of advanced publications to unlock complex academic methodologies.

@endif

Classifications Hub

All Classifications @foreach($categories as $cat) @php $isActive = request('category') == $cat->id; $isGrade = $cat->type === 'grade'; $noteCount = $cat->notes_count ?? $cat->notes()->count(); @endphp @if($isGrade) @else @endif {{ $cat->name }} {{ $noteCount }} @endforeach
@if(!$isFiltered) @if($trendingNotes->isNotEmpty())

Trending Publications

Most Viewed
@foreach($trendingNotes as $index => $note)
#{{ $index + 1 }}
@endforeach
@endif @if($premiumNotes->isNotEmpty())
Exclusive Content

Premium Vault

Unlock highly comprehensive study notes curated by educators to master complex syllabi.

@foreach($premiumNotes as $note) @endforeach
@endif @endif

@if(request()->filled('search')) Search Results for "{{ request('search') }}" @elseif(request()->filled('category')) @php $activeCat = $categories->firstWhere('id', request('category')); @endphp Resources under {{ $activeCat ? $activeCat->name : 'Classification' }} @else All Publications @endif

Page {{ $notes->currentPage() }} of {{ $notes->lastPage() }}
@if($notes->isEmpty())

No Results Found

We couldn't find any entries matching your search criteria.

@if(request()->anyFilled(['search', 'category'])) Clear all filters @endif
@else
@foreach($notes as $note) @endforeach
{{ $notes->links() }}
@endif @if(!$isFiltered)
FAQ

Frequently Asked Questions

Find answers to quick questions regarding note formats, premium access, and general operations.

How do I access Premium notes?

Premium notes are high-fidelity educational resources. They can be unlocked by requesting access through your student account page or by reaching out to the administrator for custom grants.

What note formats are supported on StudyXnote?

We support both structural text notes (for code syntax, textbook explanations, and historical listings) and graphical image uploads (for mindmaps, written sheets, and structural diagrams).

Can I request a custom classification or class category?

Yes! If you are a registered student, you can request custom categories or syllabus mappings from the admin team. We continually update the archive based on syllabus structures.

@endif
Join the Circle

Elevate Your Learning Capacity

Create a student profile to save entries, organize your cart, and track your recent study sessions.

@auth @else @endauth