/**
  * Show all groups
  *
  * @return $this
  */
 public function index()
 {
     $this->authorize('view_efficiency_report');
     return view('production.efficiency.index')->with(['logs' => EfficiencyReportLog::all()]);
 }