INSTITUTIONS
<%= @institution_count || 0 %>
PROGRAMS
<%= @program_count || 0 %>
STUDENTS
<%= @student_count || 0 %>
ZIYARAS
<%= @ziyara_count || 0 %>
TRADITIONAL RECORDS
<%= @exclusive_traditional_records_count || 0 %>

🏫 Institutions

<% if @institutions.present? %>
<% else %>

No institutions added yet.

<% end %>
<%= link_to "➕ New Institution", new_institution_path, class: "btn btn-success-custom me-2" %> <%= link_to "📚 All Students", students_path, class: "btn btn-primary-custom" %>

🎓 Programs

<% if @programs.present? %>
<% else %>

No programs available yet.

<% end %>
<%= link_to "➕ New Program", new_program_path, class: "btn btn-success-custom me-2" %> <%= link_to "📚 All Programs", programs_path, class: "btn btn-primary-custom" %>

🕌 Ziyara

<% if @ziyaras.present? %>
<% else %>

No Ziyara records yet.

<% end %>
<%= link_to "➕ New Ziyara", new_ziyara_path, class: "btn btn-success-custom me-2" %> <%= link_to "📚 All Ziyara", ziyaras_path, class: "btn btn-primary-custom" %>

📜 Exclusive Traditional Records

<% if @exclusive_traditional_records.present? %>
<% else %>

No exclusive traditional records yet.

<% end %>
<%= link_to "➕ New Record", new_exclusive_traditional_record_path, class: "btn btn-success-custom me-2" %> <%= link_to "📚 All Records", exclusive_traditional_records_path, class: "btn btn-primary-custom" %>

💼 Finance Overview

<% if notice.present? %>
<%= notice %>
<% end %>

📊 Expenses

<%= number_to_currency(@total_expense || 0) %>

<%= link_to "Expenses List", expenses_path, class: "btn btn-primary-custom mt-2" %>
<% if notice.present? %>
<%= notice %>
<% end %>

💰 Incomes

<%= number_to_currency(@total_income || 0) %>

<%= link_to "Incomes List", incomes_path, class: "btn btn-primary-custom mt-2" %>

📈 BALANCE

<%= number_to_currency(@profit || 0) %>