当前位置: 首页>>代码示例>>PHP>>正文


PHP Photo::orderBy方法代码示例

本文整理汇总了PHP中app\Photo::orderBy方法的典型用法代码示例。如果您正苦于以下问题:PHP Photo::orderBy方法的具体用法?PHP Photo::orderBy怎么用?PHP Photo::orderBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\Photo的用法示例。


在下文中一共展示了Photo::orderBy方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handle

 /**
  * Execute the job.
  *
  * @return void
  */
 public function handle()
 {
     $recordsPerPage = 3;
     $offset = ($this->page - 1) * $recordsPerPage;
     $count = Photo::count();
     if ($this->page > 1) {
         $previousPage = $this->page - 1;
     } else {
         $previousPage = null;
     }
     if ($this->page * $recordsPerPage < $count) {
         $nextPage = $this->page + 1;
     } else {
         $nextPage = null;
     }
     $photos = Photo::orderBy('posted_date', 'desc')->skip($offset)->take($recordsPerPage)->get();
     //$previousUrl = action('PhotosController@index', ['page' => $previousPage]);
     //$nextUrl = action('PhotosController@index', ['page' => $nextPage]);
     if ($previousPage) {
         $previousUrl = url('photos/display/' . $previousPage);
     } else {
         $previousUrl = null;
     }
     if ($nextPage) {
         $nextUrl = url('photos/display/' . $nextPage);
     } else {
         $nextUrl = null;
     }
     return ['photos' => $photos, 'previousUrl' => $previousUrl, 'nextUrl' => $nextUrl];
 }
开发者ID:BobHumphrey,项目名称:tumblr-photos,代码行数:35,代码来源:CreatePhotosPager.php

示例2: index

 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return view('photos', ['photos' => Photo::orderBy('created_at', 'asc')->get()]);
 }
开发者ID:RahulVerlekar,项目名称:PhotoGrab,代码行数:9,代码来源:PhotoController.php

示例3: date

    $date = date("Y-m-d");
    $heure = date("H:i:s");
    $iduser = Auth::user()->idutilisateur;
    $anecdote = new Anecdote();
    $anecdote->anecdote = $request->anecdote;
    $anecdote->idperle = $request->input('idperle');
    $anecdote->dateanecdote = $date;
    $anecdote->heureanecdote = $heure;
    $anecdote->idutilisateur = $iduser;
    if ($anecdote->save()) {
        return view('accueil_bootstrap');
    }
});
// Rècupere aléatoirement des photos dans la base de données afin de la afficher sur la page d'accueil (bandeau à droite)
Route::get('/photosaleatoires', function () {
    $photos = Photo::orderBy(DB::raw('RAND()'))->get();
    /* $photos= DB::table('photos')
       ->select(['nomphoto'])
       ->orderBy('RAND()');  */
    echo json_encode($photos);
});
// Affiche la page de consultation
Route::get('/consulter', function () {
    $perles = Perle::get();
    return view('consulter_perle');
});
/* --------------- FORMULAIRE DE CONSULTATION ------------------- */
// Affiche au format JSON de toutes les catégories
Route::get('/categoriesREST', function () {
    $categories = Categorie::get();
    echo json_encode($categories);
开发者ID:amato-impera,项目名称:LesPerlesDuMonde,代码行数:31,代码来源:routes.php

示例4: index

 /**
  * Display view for homepage
  *
  * @param Photo $images
  * @return $this
  */
 public function index(Photo $images)
 {
     return view('welcome')->with('images', $images->orderBy('created_at', 'desc')->paginate(20));
 }
开发者ID:DefrostedTuna,项目名称:php-image,代码行数:10,代码来源:PhotoController.php


注:本文中的app\Photo::orderBy方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。