Skip to content

Commit

Permalink
Update ReportController.php
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Dec 21, 2022
1 parent bfebcb5 commit 6700cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/ReportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function trainings($filterArea = false){
public function activities($filterArea = false){

$this->authorize('accessTrainingReports', [ManagementReport::class, $filterArea]);
$activities = TrainingActivity::orderByDesc('created_at')->limit(400)->get();
$activities = TrainingActivity::orderByDesc('created_at')->limit(200)->get();
$statuses = TrainingController::$statuses;

return view('reports.activities', compact('activities', 'statuses'));
Expand Down

0 comments on commit 6700cd3

Please sign in to comment.