D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
school.dentostock.com
/
app
/
Filename :
SmResultStore.php
back
Copy
<?php namespace App; use App\SmMarkStore; use App\Models\StudentRecord; use Illuminate\Support\Facades\Auth; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class SmResultStore extends Model { use HasFactory; public function studentInfo(){ return $this->belongsTo('App\SmStudent', 'student_id', 'id'); } public function exam(){ return $this->belongsTo(SmExamType::class, 'exam_type_id'); } public function subject(){ return $this->belongsTo('App\SmSubject', 'subject_id', 'id'); } public function class(){ return $this->belongsTo('App\SmClass', 'class_id', 'id'); } public function section() { return $this->belongsTo('App\SmSection', 'section_id', 'id'); } public function studentRecord() { return $this->belongsTo(StudentRecord::class, 'student_record_id', 'id'); } public function studentRecords() { return $this->belongsTo(StudentRecord::class, 'student_record_id', 'id'); } public static function remarks($gpa){ try{ $mark = SmMarksGrade::where([ ['from', '<=', $gpa], ['up', '>=', $gpa]] ) ->where('school_id',Auth::user()->school_id) ->where('academic_id', getAcademicId()) ->first(); return $mark; } catch (\Exception $e) { $mark=[]; return $mark; } } public static function GetResultBySubjectId($class_id, $section_id, $subject_id,$exam_id,$student_id){ try { $data = SmMarkStore::withOutGlobalScopes()->where([ ['class_id',$class_id], ['section_id',$section_id], ['exam_term_id',$exam_id], ['student_record_id',$student_id], ['subject_id',$subject_id] ])->get(); return $data; } catch (\Exception $e) { $data=[]; return $data; } } public static function un_GetResultBySubjectId($subject_id, $exam_id, $student_id, $request){ try { $SmMarkStore = SmMarkStore::query(); $data = universityFilter($SmMarkStore, $request) ->where([ ['exam_term_id',$exam_id], ['student_id',$student_id], ['un_subject_id',$subject_id] ])->get(); return $data; } catch (\Exception $e) { $data=[]; return $data; } } public static function GetFinalResultBySubjectId($class_id, $section_id, $subject_id,$exam_id,$student_id){ try { $data = SmResultStore::where([ ['class_id',$class_id], ['section_id',$section_id], ['exam_type_id',$exam_id], ['student_record_id',$student_id], ['subject_id',$subject_id] ])->first(); return $data; } catch (\Exception $e) { $data=[]; return $data; } } public static function un_GetFinalResultBySubjectId($subject_id, $exam_id, $student_id, $request) { try { $SmResultStore = SmResultStore::query(); $data = universityFilter($SmResultStore, $request) ->where([ ['exam_type_id',$exam_id], ['student_id',$student_id], ['un_subject_id',$subject_id] ])->first(); return $data; } catch (\Exception $e) { $data=[]; return $data; } } public static function termBaseMark($class_id, $section_id, $subject_id,$exam_id,$student_id){ $data = SmResultStore::where([ ['class_id',$class_id], ['section_id',$section_id], ['exam_type_id',$exam_id], ['student_record_id',$student_id], ['subject_id',$subject_id] ]) ->distinct('exam_type_id') ->sum('total_gpa_point'); return $data; } public static function un_termBaseMark($subject_id, $exam_id, $student_id, $request){ $SmResultStore = SmResultStore::query(); $data = universityFilter($SmResultStore, $request) ->where([ ['exam_type_id',$exam_id], ['student_id',$student_id], ['un_subject_id',$subject_id] ]) ->distinct('exam_type_id') ->sum('total_gpa_point'); return $data; } public function unSubjectDetails() { return $this->belongsTo('Modules\University\Entities\UnSubject', 'un_subject_id', 'id'); } }