@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | use Webpatser\Uuid\Uuid; |
7 | 7 | |
8 | -class Institution_class_grade extends Base_Model { |
|
8 | +class Institution_class_grade extends Base_Model { |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * The database table used by the model. |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | * |
47 | 47 | * @return \Illuminate\Database\Eloquent\Relations\HasManyThrough |
48 | 48 | */ |
49 | - public function educationSubject(){ |
|
50 | - return $this->hasManyThrough('App\Models\Education_grades_subject','App\Models\Institution_subject', |
|
51 | - 'education_subject_id' ,'education_subject_id'); |
|
49 | + public function educationSubject() { |
|
50 | + return $this->hasManyThrough('App\Models\Education_grades_subject', 'App\Models\Institution_subject', |
|
51 | + 'education_subject_id', 'education_subject_id'); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | public static function boot() |
71 | 71 | { |
72 | 72 | parent::boot(); |
73 | - self::creating(function ($model) { |
|
73 | + self::creating(function($model) { |
|
74 | 74 | $model->id = (string) Uuid::generate(4); |
75 | 75 | }); |
76 | 76 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | /** |
80 | 80 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
81 | 81 | */ |
82 | - public function classes(){ |
|
83 | - return $this->belongsTo('App\Models\Institution_grade','institution_class_id','id'); |
|
82 | + public function classes() { |
|
83 | + return $this->belongsTo('App\Models\Institution_grade', 'institution_class_id', 'id'); |
|
84 | 84 | } |
85 | 85 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class Institution_class extends Base_Model { |
|
7 | +class Institution_class extends Base_Model { |
|
8 | 8 | |
9 | 9 | public const CREATED_AT = 'created'; |
10 | 10 | public const UPDATED_AT = 'modified'; |
@@ -48,22 +48,22 @@ discard block |
||
48 | 48 | */ |
49 | 49 | protected $dates = ['modified', 'created']; |
50 | 50 | |
51 | - public function class_teacher(){ |
|
52 | - return $this->belongsTo('App\Models\Security_group_user','staff_id','security_user_id'); |
|
51 | + public function class_teacher() { |
|
52 | + return $this->belongsTo('App\Models\Security_group_user', 'staff_id', 'security_user_id'); |
|
53 | 53 | } |
54 | 54 | |
55 | - public function institution(){ |
|
56 | - return $this->belongsTo('App\Models\Institution','institution_id'); |
|
55 | + public function institution() { |
|
56 | + return $this->belongsTo('App\Models\Institution', 'institution_id'); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | |
60 | - public function getShiftClasses($shift){ |
|
60 | + public function getShiftClasses($shift) { |
|
61 | 61 | return self::query() |
62 | - ->select('institution_classes.id','institution_classes.institution_id','institution_classes.institution_shift_id', |
|
63 | - 'institution_classes.name','institution_classes.no_of_students','institution_classes.class_number','institution_class_grades.education_grade_id') |
|
64 | - ->where('institution_shift_id',$shift) |
|
62 | + ->select('institution_classes.id', 'institution_classes.institution_id', 'institution_classes.institution_shift_id', |
|
63 | + 'institution_classes.name', 'institution_classes.no_of_students', 'institution_classes.class_number', 'institution_class_grades.education_grade_id') |
|
64 | + ->where('institution_shift_id', $shift) |
|
65 | 65 | // ->where('academic_period_id',$academicPeriod) |
66 | - ->join('institution_class_grades','institution_classes.id','institution_class_grades.institution_class_id') |
|
66 | + ->join('institution_class_grades', 'institution_classes.id', 'institution_class_grades.institution_class_id') |
|
67 | 67 | ->groupBy('institution_classes.id') |
68 | 68 | ->get()->toArray(); |
69 | 69 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class Area extends Model { |
|
7 | +class Area extends Model { |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The database table used by the model. |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class User_contact extends Base_Model { |
|
7 | +class User_contact extends Base_Model { |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The database table used by the model. |
@@ -41,14 +41,14 @@ discard block |
||
41 | 41 | */ |
42 | 42 | protected $dates = ['modified', 'created']; |
43 | 43 | |
44 | - public static function createOrUpdate($data,$user){ |
|
44 | + public static function createOrUpdate($data, $user) { |
|
45 | 45 | |
46 | - if(!is_null($data['contact'])){ |
|
46 | + if (!is_null($data['contact'])) { |
|
47 | 47 | $exists = self::where('security_user_id', $data->id) |
48 | - ->where('value',$data['contact']) |
|
48 | + ->where('value', $data['contact']) |
|
49 | 49 | ->first(); |
50 | 50 | |
51 | - if(is_null($exists)){ |
|
51 | + if (is_null($exists)) { |
|
52 | 52 | $data = [ |
53 | 53 | 'security_user_id' => $data->id, |
54 | 54 | 'value' => $data['contact'], |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | 'preferred' => 1 |
59 | 59 | ]; |
60 | 60 | self::updateOrCreate($data); |
61 | - }else{ |
|
61 | + }else { |
|
62 | 62 | $exists = $exists->toArray(); |
63 | 63 | $exists['preferred'] = 1; |
64 | 64 | $exists['value'] = $data['contact']; |
@@ -58,7 +58,7 @@ |
||
58 | 58 | 'preferred' => 1 |
59 | 59 | ]; |
60 | 60 | self::updateOrCreate($data); |
61 | - }else{ |
|
61 | + } else{ |
|
62 | 62 | $exists = $exists->toArray(); |
63 | 63 | $exists['preferred'] = 1; |
64 | 64 | $exists['value'] = $data['contact']; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class Upload extends Model { |
|
7 | +class Upload extends Model { |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The database table used by the model. |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | |
44 | 44 | public $timestamps = true; |
45 | 45 | |
46 | - public function user(){ |
|
47 | - return $this->belongsTo('App\Models\Security_user','security_user_id'); |
|
46 | + public function user() { |
|
47 | + return $this->belongsTo('App\Models\Security_user', 'security_user_id'); |
|
48 | 48 | } |
49 | 49 | |
50 | - public function classRoom(){ |
|
51 | - return $this->belongsTo('App\Models\Institution_class','institution_class_id'); |
|
50 | + public function classRoom() { |
|
51 | + return $this->belongsTo('App\Models\Institution_class', 'institution_class_id'); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class Academic_period extends Base_Model { |
|
7 | +class Academic_period extends Base_Model { |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The database table used by the model. |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | */ |
42 | 42 | protected $dates = ['start_date', 'end_date', 'modified', 'created']; |
43 | 43 | |
44 | - public function getAcademicPeriod($year){ |
|
45 | - return self::query()->where('code',$year)->first(); |
|
44 | + public function getAcademicPeriod($year) { |
|
45 | + return self::query()->where('code', $year)->first(); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class Identity_type extends Model { |
|
7 | +class Identity_type extends Model { |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The database table used by the model. |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Illuminate\Database\Eloquent\Model; |
6 | 6 | |
7 | -class Education_grade extends Model { |
|
7 | +class Education_grade extends Model { |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The database table used by the model. |
@@ -41,17 +41,17 @@ discard block |
||
41 | 41 | */ |
42 | 42 | protected $dates = ['modified', 'created']; |
43 | 43 | |
44 | - public function getNextGrade($gradeId,$getNextProgrammeGrades = false, $firstGradeOnly = false){ |
|
44 | + public function getNextGrade($gradeId, $getNextProgrammeGrades = false, $firstGradeOnly = false) { |
|
45 | 45 | if (!empty($gradeId)) { |
46 | 46 | $gradeObj = $this->find($gradeId); |
47 | 47 | $programmeId = $gradeObj->education_programme_id; |
48 | 48 | $order = $gradeObj->order; |
49 | - $gradeOptions = self::where( 'education_programme_id',$programmeId |
|
50 | - )->where('order',$order+1)->get()->first(); |
|
49 | + $gradeOptions = self::where('education_programme_id', $programmeId |
|
50 | + )->where('order', $order + 1)->get()->first(); |
|
51 | 51 | $nextProgramme = self::getNextProgrammeList($programmeId); |
52 | - if(empty($gradeOptions) && !is_null($nextProgramme)){ |
|
52 | + if (empty($gradeOptions) && !is_null($nextProgramme)) { |
|
53 | 53 | $programmeId = $nextProgramme->next_programme_id; |
54 | - $gradeOptions = self::where( 'education_programme_id',$programmeId |
|
54 | + $gradeOptions = self::where('education_programme_id', $programmeId |
|
55 | 55 | )->get()->first(); |
56 | 56 | } |
57 | 57 | // Default is to get the list of grades with the next programme grades |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | // $results = $gradeOptions; |
67 | 67 | // } |
68 | 68 | return $gradeOptions; |
69 | - } else { |
|
69 | + }else { |
|
70 | 70 | return null; |
71 | 71 | } |
72 | 72 | } |
@@ -78,11 +78,11 @@ discard block |
||
78 | 78 | |
79 | 79 | foreach ($nextProgrammeList as $nextProgrammeId) { |
80 | 80 | $nextProgrammeGradeResults = self:: |
81 | - where('education_programme_id',$nextProgrammeId->next_programme_id)->get()->toArray(); |
|
81 | + where('education_programme_id', $nextProgrammeId->next_programme_id)->get()->toArray(); |
|
82 | 82 | |
83 | 83 | $results = $results + [key($nextProgrammeGradeResults) => current($nextProgrammeGradeResults)]; |
84 | 84 | } |
85 | - } else { |
|
85 | + }else { |
|
86 | 86 | $results = []; |
87 | 87 | } |
88 | 88 | |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | |
101 | 101 | $nextProgrammeList = $this->getNextProgrammeList($id); |
102 | 102 | if (!empty($nextProgrammeList)) { |
103 | - $results = self::whereIn('education_programme_id',$nextProgrammeList) |
|
103 | + $results = self::whereIn('education_programme_id', $nextProgrammeList) |
|
104 | 104 | ->get()->toArray(); |
105 | - } else { |
|
105 | + }else { |
|
106 | 106 | $results = []; |
107 | 107 | } |
108 | 108 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * @return array List of next education programmes id |
117 | 117 | */ |
118 | 118 | public function getNextProgrammeList($id) { |
119 | - return Education_programmes_next_programme::where('education_programme_id',$id) |
|
119 | + return Education_programmes_next_programme::where('education_programme_id', $id) |
|
120 | 120 | ->get()->first(); |
121 | 121 | } |
122 | 122 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | use Illuminate\Database\Eloquent\Model; |
7 | 7 | use Illuminate\Support\Facades\Auth; |
8 | 8 | |
9 | -class Base_Model extends Model{ |
|
9 | +class Base_Model extends Model { |
|
10 | 10 | |
11 | 11 | |
12 | 12 | |
@@ -18,10 +18,10 @@ discard block |
||
18 | 18 | { |
19 | 19 | |
20 | 20 | parent::boot(); |
21 | - self::creating(function ($model) { |
|
21 | + self::creating(function($model) { |
|
22 | 22 | $model->created = Carbon::now(); |
23 | 23 | }); |
24 | - self::updating(function ($model) { |
|
24 | + self::updating(function($model) { |
|
25 | 25 | $model->modified = Carbon::now(); |
26 | 26 | }); |
27 | 27 | } |