Exemple #1
0
 /**
  * 根据ID获取相册所有图片
  * @param $id
  * @return $this
  */
 public function GetPhoList($id)
 {
     $photoSrv = new Photo();
     $albumSrv = new Album();
     $result['photo'] = $photoSrv->GetPhoList($id);
     $result['album'] = $albumSrv->GetAlbumInfo($id);
     return view('mei.pholist')->with('result', $result);
 }