Skip to content

Commit 062466f

Browse files
committedMay 1, 2020
Updated files
1 parent 93128ff commit 062466f

File tree

2,276 files changed

+88241
-350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,276 files changed

+88241
-350
lines changed
 

‎app/Enroll.php

+4
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,8 @@ public function student() {
1313
public function section() {
1414
return $this->belongsTo(Section::class);
1515
}
16+
17+
public function result() {
18+
return $this->belongsTo(Result::class);
19+
}
1620
}

‎app/Grade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
class Grade extends Model
88
{
9-
//
9+
protected $table = "grades";
1010
}

0 commit comments

Comments
 (0)
Please sign in to comment.