@extends('layouts.app') @section('titlePage', 'List Assignment') @section('content')
Assignment Report
@include('common.alert')
@foreach ($assignments as $value) @endforeach
Category Title Name USN Campus Degree Department Batch Section Maximum Marks Student score Remarks Status Action
{{ $categoriesMap[$value->assignments_category_id]->category }} {{ $value->title }} {{ $value->fullname }} {{ $value->registration_number }} {{ $value->campus->campus_title }} {{ $value->degree->deg_spc_title }} {{ $value->department->d_name }} {{ $value->batch->batch_title }} {{ $value->section->title }} {{ $value->total_marks }} {{ !empty($latestResultMap[$value->assignment_id.'_'.$value->id]) ? $latestResultMap[$value->assignment_id.'_'.$value->id]->marks_obtained : '' }} {{ !empty($remarksMap[$value->assignment_id.'_'.$value->id]) ? $remarksMap[$value->assignment_id.'_'.$value->id]->remarks : '' }} @if(!empty($latestResultMap[$value->assignment_id.'_'.$value->id])) Attempted @else Not Attempted @endif View Detail
{{-- Pagination --}}
@endsection @section('script') @endsection