public static function getIdPhieu($msp) { $id = PhieuMuonSach::select('id')->where('ma_so_phieu', $msp)->get(); return $id[0]->id; }
public function edit() { $id = Input::get('txtIdPhieuMuon'); $PhieuMuon = PhieuMuonSach::select('*')->where('phieu_muon_sach.id', $id)->paginate(QUAN_LY_SO_PHIEU_MUON_TREN_TRANG); return View::make('thuthu_quanlymuontra.edit')->with('title', 'Sửa thông tin phiếu mượn')->with('PhieuMuon', $PhieuMuon); }