@extends('layouts.app') @section('styles') @endsection @section('content')
إستخراج بدل فاقد
@csrf @include('layouts.filter')
{{__('student.reset') }}
@if ( isset($students) ) @foreach ($students as $student) {{-- number of faces print --}} {{-- number of prints --}} @endforeach @endif
رقم {{ __('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') }} @isset($student)
{{ $student->card->front_prints ?? 0 }}
{{ __('student-card.front-printed') }}
{{ $student->card->back_prints ?? 0 }}
{{ __('student-card.back-printed') }}
@endisset
@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') }}
{{-- Card Layout --}} {{--
info@uofs.edu.sd
--}} @endsection @section('scripts') {!! Toastr::message() !!} @endsection