Sunday, May 20, 2018

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

No comments:

Post a Comment