Пример #1
0
 public function index()
 {
     $photoList = Photos::select("id", "path")->limit(20)->orderBy("created_at", "desc")->get();
     $result["photoList"] = $photoList;
     return $this->render('Admin/Media/index', $result);
 }