-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e70724
commit b9e679f
Showing
9,389 changed files
with
1,698 additions
and
1,235 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
MASTER BRANCH | ||
NEW BACKEND BRANCH |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified
0
database/migrations/2014_10_12_100000_create_password_resets_table.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file modified
0
database/migrations/2019_10_29_091711_create_contacts_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_10_29_131051_create_registered_courses_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_10_29_131218_create_courses_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_10_29_131630_create_reviews_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_10_29_132227_create_course_contents_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_10_30_163624_create_subscriptions_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_10_31_151445_create_assignments_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_11_03_153516_create_schedules_table.php
100644 → 100755
Empty file.
Empty file modified
0
database/migrations/2019_11_04_120816_create_submissions_table.php
100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
@extends('layouts.admin-dashboard') | ||
|
||
@section('content') | ||
<div class="content"> | ||
<div class="card card-register"> | ||
<div class="card-header"> | ||
<h5 class="card-title">DETAILS</h5> | ||
</div> | ||
<div class="card-body"> | ||
<div class="card-header"> | ||
<h4 class="card-title">Submissions</h4> | ||
</div> | ||
<div class="card-body"> | ||
@foreach($courses as $course) | ||
@foreach($contents as $content) | ||
@foreach($assignments as $assignment) | ||
@foreach($submissions as $submission) | ||
@if($assignment->course_content_id==$content->id) | ||
@if($course->id==$content->course_id) | ||
@if($submission->assignment_id==$assignment->id) | ||
<li><!--<img style="width:100%" src="/storage/submissions/{{$submission->file}}">--> | ||
<a href="/storage/submissions/{{$submission->file}}" download> | ||
Download | ||
</a> | ||
@foreach($students as $student) | ||
@if($submission->user_id==$student->id) | ||
{{$student->username}} | ||
@endif | ||
@endforeach | ||
</li> | ||
@endif | ||
@endif | ||
@endif | ||
@endforeach | ||
@endforeach | ||
@endforeach | ||
@endforeach | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
@endsection | ||
|
||
|
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.