@extends('layouts.app') @section('content')

View Uploaded Files

@if(request()->has('session_id'))
@endif
@if(!empty($homeworks))
Assigned Homeworks
@foreach($homeworks as $index => $hw) @endforeach
# Exercise Type Student Week Status Assigned By Date
{{ $index + 1 }} {{ $hw->ex_name }} {{ $hw->exercise_type }} {{ $hw->student_id }} {{ $hw->week_id }} @if($hw->status == 0) Pending @else Completed @endif {{ $hw->teacher_name }} {{ \Carbon\Carbon::parse($hw->date)->format('d M Y') }}
@endif @include('layouts.footers.auth.footer') @endsection