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

{{ $isArabic ? 'تصويت مدرسي' : 'School Voting' }}

{{ $isArabic ? 'التصويت على الطالب المثالي' : 'Vote for the Ideal Student' }}

{{ $isArabic ? 'اختر أفضل الطلاب على مستوى الفصل أو الصف أو المرحلة. يمكن أن تتضمن الحملة ترشيحات للبنين والبنات حسب إعدادات الإدارة.' : 'Vote for the best students at class, grade, or stage level. Campaigns may include male and female selections depending on admin settings.' }}

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