count in laravel 5.3 - development

count in laravel 5.3

I want to count table users row in laravel 5.3.

Here is my code Controller:

public function admin(){
    $jumlah['data'] = DB::table('users')->get();
    return view('admin',$jumlah);
}

In view, I call this count with :



Then I run and I get the message:

Undefined variable: jumlah (View: C:xampphtdocsBiroUmumresourcesviewsdashboardadmin.blade.php)



from Laravel Questions and Answers https://laravelquestions.com/php/count-in-laravel-5-3/
via Lzo Media

Comments

Popular posts from this blog

ng-show doesn’t work correct with value boolean

Using PHP and MySQL data to generate PDF letters like in MS Word mailmerge functionality - development

ng-include of inline SVG does not display gradient except in Chrome