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


PHP Article::count方法代码示例

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


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

示例1: overview

 public function overview()
 {
     $total = Article::count();
     $star = Article::where('star_ind', '1')->count();
     $read = Article::where('status', 'read')->count();
     $unread = $total - $read;
     return response()->json(compact('total', 'star', 'read', 'unread'));
 }
开发者ID:yuansir,项目名称:rssmonster,代码行数:8,代码来源:ArticleController.php

示例2: index

 public function index()
 {
     $article_count = Article::count();
     $category_count = Category::count();
     $tag_count = Tag::count();
     $user_count = User::count();
     return view('admin.console', compact('article_count', 'category_count', 'tag_count', 'user_count'));
 }
开发者ID:axhello,项目名称:laravel-blog-demo,代码行数:8,代码来源:AdminController.php

示例3: index

 public function index()
 {
     $userCount = User::count();
     $articleCount = Article::count();
     $tagCount = Tag::count();
     $imageCount = Image::count();
     return view('admin.index', compact('userCount', 'articleCount', 'imageCount', 'tagCount'));
 }
开发者ID:litemax,项目名称:LaravelBlog,代码行数:8,代码来源:IndexController.php

示例4: index

 public function index()
 {
     $title = "Dashboard";
     $article = Article::count();
     $articlecategory = ArticleCategory::count();
     $users = User::count();
     $photo = Photo::count();
     $photoalbum = PhotoAlbum::count();
     return view('admin.dashboard.index', compact('title', 'article', 'articlecategory', 'photo', 'photoalbum', 'users'));
 }
开发者ID:bee7er,项目名称:brianetheridge_laravel_v2,代码行数:10,代码来源:DashboardController.php

示例5: composeDashboard

 private function composeDashboard()
 {
     view()->composer('admin.index', function ($view) {
         $numArticle = \App\Article::count();
         $numCategory = \App\Category::count();
         $numTag = \App\Tag::count();
         $numProject = \App\Project::count();
         $numMessage = \App\Message::count();
         $view->with(compact('numArticle', 'numCategory', 'numTag', 'numProject', 'numMessage'));
     });
 }
开发者ID:ambarsetyawan,项目名称:laravel5-blog-1,代码行数:11,代码来源:DashboardViewComposerServiceProvider.php

示例6: index

 public function index()
 {
     $title = "Dashboard";
     $news = Article::count();
     $newscategory = ArticleCategory::count();
     $users = User::count();
     $photo = Photo::count();
     $photoalbum = PhotoAlbum::count();
     $video = Video::count();
     $videoalbum = VideoAlbum::count();
     return view('backend.dashboard.index', compact('title', 'news', 'newscategory', 'video', 'videoalbum', 'photo', 'photoalbum', 'users'));
 }
开发者ID:Rotron,项目名称:laravel5-shop,代码行数:12,代码来源:DashboardController.php

示例7: Home

 public function Home(Request $request)
 {
     $page = (int) ($request->get('p', '1') > 0 ? $request->get('p', '1') : 1);
     $isPageMax = false;
     $articles = Article::orderBy('publish_at', 'desc')->orderBy('id', 'desc')->skip(($page - 1) * 10)->take(10)->get();
     if (count($articles) == 0 && $page > 1) {
         $pagemax = ceil(Article::count() / 10);
         return Redirect::route('adminArticles', array('p' => $pagemax));
     }
     $nextArticles = Article::orderBy('publish_at', 'desc')->orderBy('id', 'desc')->skip($page * 10)->take(1)->get();
     if (count($nextArticles) == 0) {
         $isPageMax = true;
     }
     return view('admin.articles.home', compact('page', 'isPageMax', 'articles'));
 }
开发者ID:kbiyo,项目名称:ARTTv2,代码行数:15,代码来源:ArticlesController.php

示例8: getFever

 public function getFever()
 {
     /* Fever API needs strings for category_id and feed_id's */
     //static for now
     $email = 'username';
     $pass = 'password';
     $api_key = md5($email . ':' . $pass);
     //always return status 1: password and username correct
     $status = '1';
     //latest api version is 3
     $arr = ['api_version' => '3', 'auth' => $status];
     //last refreshed is current system time
     $time = ['last_refreshed_on_time' => strtotime('now')];
     $arr = array_merge($arr, $time);
     //when argument is groups, retrieve list with categories and id's
     if (isset($_GET['groups'])) {
         $groups = [];
         $Categories = Category::orderBy('category_order', 'asc')->get();
         if (!empty($Categories)) {
             foreach ($Categories as $Category) {
                 array_push($groups, ['id' => (string) $Category->id, 'title' => $Category->name]);
             }
         }
         $response_arr['groups'] = $groups;
         $arr = array_merge($arr, $response_arr);
     }
     //when argument is feeds, retrieve list with feeds and id's
     if (isset($_GET['feeds'])) {
         $feeds = [];
         $Feeds = Feed::orderBy('feed_name', 'asc')->get();
         if (!empty($Feeds)) {
             foreach ($Feeds as $Feed) {
                 array_push($feeds, ['id' => (int) $Feed->id, 'favicon_id' => (int) $Feed->id, 'title' => $Feed->feed_name, 'url' => $Feed->url, 'site_url' => $Feed->url, 'is_spark' => '0', 'last_updated_on_time' => strtotime($Feed->updated_at)]);
             }
         }
         $response_arr['feeds'] = $feeds;
         $arr = array_merge($arr, $response_arr);
     }
     //when argument is groups or feeds, also return feed id's linked to category id's
     if (isset($_GET['groups']) || isset($_GET['feeds'])) {
         $feeds_groups = [];
         //The array is composed with a group_id and feed_ids containing a string/comma-separated list of positive integers
         $Categories = Category::orderBy('category_order', 'asc')->get();
         if (!empty($Categories)) {
             foreach ($Categories as $key => $Category) {
                 $feeds_groups[$key]['group_id'] = (int) $Category->id;
                 $Feeds = Category::find($Category->id)->feeds;
                 if (!empty($Feeds)) {
                     $feed_ids = [];
                     foreach ($Feeds as $Feed) {
                         array_push($feed_ids, $Feed->id);
                     }
                     $feeds_groups[$key]['feed_ids'] = implode(',', $feed_ids);
                 }
             }
         }
         $response_arr['feeds_groups'] = $feeds_groups;
         $arr = array_merge($arr, $response_arr);
     }
     //return list with all unread article id's
     if (isset($_GET['unread_item_ids'])) {
         $unread_item_ids = [];
         $Articles = Article::where('status', 'unread')->orderBy('id', 'asc')->get();
         if (!empty($Articles)) {
             foreach ($Articles as $Article) {
                 array_push($unread_item_ids, $Article->id);
             }
         }
         //string/comma-separated list of positive integers instead of array
         $stack = implode(',', $unread_item_ids);
         $unreaditems = ['unread_item_ids' => $stack];
         $arr = array_merge($arr, $unreaditems);
     }
     //return string/comma-separated list with id's from read and starred articles
     if (isset($_GET['saved_item_ids'])) {
         $saved_item_ids = [];
         $Articles = Article::where('star_ind', '1')->orderBy('id', 'asc')->get();
         if (!empty($Articles)) {
             foreach ($Articles as $Article) {
                 array_push($saved_item_ids, $Article->id);
             }
         }
         //string/comma-separated list of positive integers instead of array
         $stack = implode(',', $saved_item_ids);
         $saveditems = ['saved_item_ids' => $stack];
         $arr = array_merge($arr, $saveditems);
     }
     //when argument is items, return 50 articles at a time
     if (isset($_GET['items'])) {
         $total_items = [];
         $total_items['total_items'] = Article::count();
         $arr = array_merge($arr, $total_items);
         $items = [];
         //request specific items, a maximum of 50 specific items requested by comma-separated argument
         if (isset($_GET['with_ids'])) {
             //list with id's is comma-separated, so transform to array
             $ArrayIds = explode(',', $_REQUEST['with_ids']);
             //create empty array to store Article results
             $Articles = [];
             if (!empty($ArrayIds)) {
//.........这里部分代码省略.........
开发者ID:rafix82,项目名称:rssmonster,代码行数:101,代码来源:FeverController.php

示例9: getApiarticlelist

 /**
  * 获取文章列表  -- ajax
  * 
  * @param		
  * 
  * @author		wen.zhou@bioon.com
  * 
  * @date		2015-10-25 11:45:44
  * 
  * @return		
  */
 public function getApiarticlelist()
 {
     /*获取参数*/
     $draw = request('draw', 1);
     $start = request('start', 0);
     $length = request('length', 10);
     $search = request('search.value', '');
     /*获取菜单*/
     $obj_article = new Article();
     $count = $obj_article->count();
     /*搜索*/
     if (!empty($search)) {
         $obj_article = $obj_article::where('name', 'like', '%{$search}%');
     }
     /*条数*/
     if ($length != -1) {
         $obj_article = $obj_article->offset($start)->limit($length);
     }
     $result_articles = $obj_article->get();
     $articles = $result_articles->toArray();
     foreach ($result_articles as $key => $result_article) {
         $articles[$key]['update'] = $this->current_user->can('update.articles');
         $articles[$key]['delete'] = $this->current_user->can('delete.articles');
     }
     $returnData = ["draw" => $draw, "recordsTotal" => $count, "recordsFiltered" => $count, 'data' => $articles];
     return response()->json($returnData);
 }
开发者ID:xezw211,项目名称:laravel-blog-project,代码行数:38,代码来源:ArticleController.php

示例10: index

 public function index()
 {
     $count = ['articles' => Article::count(), 'registrants' => Registrant::count(), 'users' => User::count(), 'messages' => Message::count()];
     return view('admin.dashboard', compact('count'));
 }
开发者ID:kobeuu,项目名称:bpb-sf,代码行数:5,代码来源:AdminController.php

示例11: panel

 public function panel()
 {
     $articles = Article::orderBy('created_at', 'desc')->get();
     $count = Article::count();
     return view('admin', ['articles' => $articles, 'count' => $count]);
 }
开发者ID:MahamedGiire,项目名称:DTT,代码行数:6,代码来源:ArticleController.php


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