@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'تصويت الطالب المثالي' : 'Ideal Student Voting') @section('skip_page_hero', true) @php($isArabic = app()->getLocale() === 'ar') @section('content')

{{ $isArabic ? 'تصويت المعلمين على الطالب المثالي' : 'Teacher voting for the ideal student' }}

{{ $isArabic ? 'صوّت للطلاب المثاليين ضمن الفصول والصفوف والمراحل التي تدرّسها. يتم تنظيم المرشحين حسب الفصول لتسهيل الاختيار.' : 'Vote for ideal students in the classes, grades, and stages you teach. Candidates are grouped by class to make selection easier.' }}

@forelse($campaignCards as $card) @include('ideal_student_votes._ballot_card', ['card' => $card, 'routePrefix' => 'teacher']) @empty
{{ $isArabic ? 'لا توجد حملات تصويت متاحة لك حاليًا.' : 'No voting campaigns are currently available to you.' }}
@endforelse
@endsection