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


PHP Quote::orderBy方法代码示例

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


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

示例1: getMain

 public function getMain()
 {
     $moderatequotes = Quote::orderBy('id', 'desc')->whereStatus(0);
     $quotes = Auth::user()->quotes()->orderBy('id', 'desc')->paginate(Config::get('settings.per_page'));
     $this->layout->title = 'Dashboard';
     $this->layout->nest('content', 'user.dashboard.main', ['quotes' => $quotes, 'moderatequotes' => $moderatequotes]);
 }
开发者ID:shiftosnext,项目名称:Quotinator,代码行数:7,代码来源:UserDashboardController.php

示例2: index

 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     if (!Input::has('sp')) {
         $sp = 0;
     } else {
         $sp = intval(Input::get('sp'));
     }
     return Response::json(['sp' => intval($sp) + 10, 'quotes' => Quote::orderBy('created_at', 'desc')->skip($sp)->take(10)->get()]);
 }
开发者ID:elvisjames,项目名称:oneline,代码行数:14,代码来源:QuoteController.php

示例3: getSearch

 public function getSearch()
 {
     if (Session::has('search')) {
         $words = explode(' ', Session::get('search'));
         $quotes = Quote::orderBy('id', 'desc')->orWhere(function ($query) use($words) {
             foreach ($words as $word) {
                 $query->where('quote', 'LIKE', '%' . $word . '%');
             }
             $query->whereStatus(1);
         })->orWhere(function ($query) use($words) {
             foreach ($words as $word) {
                 $query->where('title', 'LIKE', '%' . $word . '%');
             }
             $query->whereStatus(1);
         })->paginate(Config::get('settings.per_page'));
         $quotesCount = $quotes->count();
         //$this->layout->title = 'Search';
         $this->layout->nest('content', 'search', ['quotes' => $quotes, 'count' => $quotesCount, 'terms' => Session::get('search')]);
     } else {
         return Redirect::to('/')->withErrors(array('usesearch' => 'Use the search box, silly :)'));
     }
 }
开发者ID:shiftosnext,项目名称:Quotinator,代码行数:22,代码来源:HomeController.php


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