| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Scholarship extends Model |
||
| 13 | { |
||
| 14 | use CrudTrait; |
||
|
|
|||
| 15 | use SoftDeletes; |
||
| 16 | |||
| 17 | protected $table = 'scholarships'; |
||
| 18 | |||
| 19 | protected $guarded = ['id']; |
||
| 20 | |||
| 21 | /* |
||
| 22 | |-------------------------------------------------------------------------- |
||
| 23 | | FUNCTIONS |
||
| 24 | |-------------------------------------------------------------------------- |
||
| 25 | */ |
||
| 26 | |||
| 27 | /* |
||
| 28 | |-------------------------------------------------------------------------- |
||
| 29 | | RELATIONS |
||
| 30 | |-------------------------------------------------------------------------- |
||
| 31 | */ |
||
| 32 | |||
| 33 | public function enrollments() |
||
| 56 |