コード例 #1
0
ファイル: Slot.php プロジェクト: arkivalenciaii/clientv2
 public function exitslot()
 {
     $exit = \DB::Select('select * from slots');
     $cnt = count($exit);
     $eslot = $this->id * 2 * 2 + 3;
     if ($cnt >= $eslot) {
         return true;
     }
 }
コード例 #2
0
 function getPrereqs()
 {
     $id = $this->id;
     $preq = DB::Select('Select prereq_id from subject_prereq where subject_id=$id');
 }