@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Illuminate\Database\Eloquent\Model; |
| 6 | 6 | |
| 7 | -class User_body_mass extends Base_Model { |
|
| 7 | +class User_body_mass extends Base_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 Institution_staff extends Model { |
|
| 7 | +class Institution_staff extends Model { |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * The database table used by the model. |
@@ -42,12 +42,12 @@ discard block |
||
| 42 | 42 | protected $dates = ['start_date', 'end_date', 'modified', 'created']; |
| 43 | 43 | |
| 44 | 44 | |
| 45 | - public function staff_class(){ |
|
| 46 | - return $this->hasMany('App\Models\Institution_class','staff_id','staff_id'); |
|
| 45 | + public function staff_class() { |
|
| 46 | + return $this->hasMany('App\Models\Institution_class', 'staff_id', 'staff_id'); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - public function institution(){ |
|
| 50 | - return $this->belongsTo('App\Models\Institution','institution_id'); |
|
| 49 | + public function institution() { |
|
| 50 | + return $this->belongsTo('App\Models\Institution', 'institution_id'); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Illuminate\Database\Eloquent\Model; |
| 6 | 6 | |
| 7 | -class Nationality extends Model { |
|
| 7 | +class Nationality extends Model { |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * The database table used by the model. |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Illuminate\Database\Eloquent\Model; |
| 6 | 6 | |
| 7 | -class Workflow_transition extends Model { |
|
| 7 | +class Workflow_transition extends Model { |
|
| 8 | 8 | |
| 9 | 9 | public const CREATED_AT = 'created'; |
| 10 | 10 | public const UPDATED_AT = 'modified'; |
@@ -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']; |
@@ -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 | } |