Skip to content

Commit

Permalink
Se corrije error a contar los registros(Leads) en el dashboard
Browse files Browse the repository at this point in the history
Se corrije error al momento de contar los registros(Leads) en el 
dashboard
  • Loading branch information
alek10c committed Nov 5, 2018
1 parent c672bfa commit deaf794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/PagesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function dashboard()
*
*/
$completedLeadsToday = $this->leads->completedLeadsToday();
$createdLeadsToday = $this->leads->completedLeadsToday();
$createdLeadsToday = $this->leads->createdLeadsToday();

/**
* Statistics for leads this month.
Expand Down

0 comments on commit deaf794

Please sign in to comment.