public function postAdd(PointRequest $request) { $point = new Diem(); $point->sbd = $request->txtsbd; $point->mon1 = $request->txtdmon1; $point->mon2 = $request->txtdmon2; $point->mon3 = $request->txtdmon3; $point->khoi = $request->txtkt; $point->thisinh_id = 3; $point->save(); return redirect()->route('admin.point.list')->with(['flash_level' => 'success', 'flash_message' => 'Thêm điểm thành công!!!']); }
public function getTuyenSinh() { $student = ThiSinh::where('user_id', Auth::user()->id)->get()->first()->toArray(); $diems = Diem::where('thisinh_id', $student['id'])->get()->toArray(); $truongs = Truong::orderBy('tentr', 'ASC')->get()->toArray(); $thisinh = ThiSinh::where('user_id', Auth::user()->id)->get()->first(); $dangkis = DangKi::where('thisinh_id', $thisinh->id)->get()->first(); if ($dangkis == null) { $checknganh = 0; $nganh = 0; } else { $nganh = Nganh::select('id', 'manganh', 'tennganh', 'diemchuan')->where('id', $dangkis->nganh_id)->get()->first(); $checknganh = 1; } return view('student.regi', ['student' => $student, 'diems' => $diems, 'truongs' => $truongs, 'nganh' => $nganh, 'checknganh' => $checknganh, 'dangkis' => $dangkis]); }
public function postEditScore(Request $request, $id) { $this->validate($request, ['txtsbd' => 'required'], ['txtsbd.required' => 'Bạn chưa nhập số báo danh!'], ['txtdmon1' => 'required'], ['txtdmon1.required' => 'Bạn chưa nhập điểm môn 1!'], ['txtdmon2' => 'required'], ['txtdmon2.required' => 'Bạn chưa nhập điểm môn 2!'], ['txtdmon3' => 'required'], ['txtdmon3.required' => 'Bạn chưa nhập điểm môn 3!'], ['txtkt' => 'required'], ['txtkt.required' => 'Bạn chưa nhập khối thi!']); $point = Diem::find($id); $point->sbd = $request->txtsbd; $point->mon1 = $request->txtdmon1; $point->mon2 = $request->txtdmon2; $point->mon3 = $request->txtdmon3; $point->khoi = $request->txtkt; $point->save(); return redirect()->route('cluster-staff.quan-ly-thong-tin-thi-sinh.listStudent')->with(['flash_level' => 'success', 'flash_message' => 'Success!!! Complete Edit Point']); }