إستخراج بطاقة جديدة
رقم | {{ __('student.id') }} | {{ __('student.name') }} | {{ __('student.college') }} | {{ __('student.section') }} | {{ __('student-card.faces') }} | {{ __('student-card.status') }} | {{ __('student.actions') }} |
---|---|---|---|---|---|---|---|
1 | {{ $student->student_id }} | {{ $student->student_name }} | {{ isset($student->college) ? $student->college->name : __('home.not-set') }} | {{ isset($student->section) ? $student->section->name : __('home.not-set') }} | {{-- number of faces print --}}
@isset($student)
{{ $student->card->front_prints ?? 0 }}
{{ __('student-card.front-printed') }}
{{ $student->card->back_prints ?? 0 }}
{{ __('student-card.back-printed') }}
@endisset
|
{{-- number of prints --}}
@isset($student)
@if ($student->card && $student->card->status == 1)
{{ $student->card->number_of_print ?? 0 }}
{{ __('student-card.printed') }}
@else
0
{{ __('student-card.not-printed') }}
@endif
@endisset
|
|
رقم | {{ __('student.id') }} | {{ __('student.name') }} | {{ __('student.college') }} | {{ __('student.section') }} | {{ __('student-card.status') }} | {{ __('student-card.status') }} | {{ __('student.actions') }} |