如何在laravel 5

时间:2016-01-11 07:28:40

标签: laravel-5

这里我需要在首页上显示数据库表行的数量。我使用count()在模型页面中完成了计数。我把它传给了一个变量。现在我需要知道如何将变量从模型传递给控制器​​。

型号:

 public static function count_product()
    {
     $n = DB::table('le_product')->where('le_product.status','=',1)->get();
     $n->count();   
    }

Contrller:

public function siteadmin_dashboard()
{

    $count = Count_model::count_product();      
    return view('siteadmin.admin_dashboard',['count' => $count]);
}

查看:

    <div class="inner">
            <?php
              foreach ($count as $roww) 
              {
               // $ca=$roww->product_title;
                $n=count($roww);
            ?>
              <h3>{{$n}}</h3>

              <?php }

              ?>
              <p>Active Product</p>
            </div>

上面的代码我错了。

0 个答案:

没有答案