當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Post::latest方法代碼示例

本文整理匯總了PHP中app\models\Post::latest方法的典型用法代碼示例。如果您正苦於以下問題:PHP Post::latest方法的具體用法?PHP Post::latest怎麽用?PHP Post::latest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\models\Post的用法示例。


在下文中一共展示了Post::latest方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: show

 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id = null)
 {
     //$posts = Post::all();
     $posts = Post::latest('id')->paginate(2);
     //$posts = DB::table('posts')->paginate(2);
     return view('post.list', array('posts' => $posts));
 }
開發者ID:ruslankus,項目名稱:lavarel-lessons,代碼行數:13,代碼來源:PostController.php

示例2: index

 public function index()
 {
     //$posts = Post::all();
     //$posts = Post::latest('id')->get();
     //$posts = Post::latest('published_at')->get();
     $posts = Post::latest('published_at')->where('published_at', '<=', Carbon::now('Europe/Kiev'))->get();
     return view('post.index', ['posts' => $posts]);
 }
開發者ID:Vitold55,項目名稱:radio,代碼行數:8,代碼來源:PostController.php

示例3: index

 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $posts = Post::latest('published_at')->where('published_at', '<=', Carbon::now())->get();
     return view('post.index', ['posts' => $posts]);
 }
開發者ID:evnazarchuk,項目名稱:laravel5-test,代碼行數:10,代碼來源:PostController.php

示例4: getAllRelated

 /**
  * Returns the related posts (by category id)
  * @param type $post 
  * @param type $limit 
  * @return type
  */
 public function getAllRelated($post, $limit = 5)
 {
     return Post::latest('published_at')->where('post_type_id', '=', $post->post_type_id)->where('category_id', '=', $post->category_id)->where('id', '!=', $post->id)->take($limit)->get();
 }
開發者ID:elieandraos,項目名稱:gaia-posts,代碼行數:10,代碼來源:PostRepository.php

示例5: index

 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $posts = Post::latest()->get();
     $tags = Tag::all();
     return view('blog.posts', ['posts' => $posts, 'tags' => $tags]);
 }
開發者ID:scotthummel,項目名稱:piscean,代碼行數:11,代碼來源:PostsController.php

示例6: getPost

 public function getPost($id = NULL)
 {
     return $id == NULL ? Post::latest()->get() : Post::find($id);
 }
開發者ID:timdonat,項目名稱:ketangkap,代碼行數:4,代碼來源:APIController.php

示例7: getUnPublishedPosts

 public function getUnPublishedPosts()
 {
     $posts = Post::latest('published_at')->unPublished()->get();
     return $posts;
 }
開發者ID:Asekahud,項目名稱:Web_Programming,代碼行數:5,代碼來源:Post.php


注:本文中的app\models\Post::latest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。