namespace

This commit is contained in:
2021-03-19 21:36:13 +09:00
parent 3e24f71987
commit cf6c601bcf

View File

@@ -76,7 +76,7 @@ class AfterActionReportsController extends Controller
public function DisplayAllReports() {
//Grab all the reports
$reports = AfterActionReports::where('created_at', '>=', Carbon::now()->subDays(30));
$reports = AfterActionReport::where('created_at', '>=', Carbon::now()->subDays(30));
$comments = AfterActionReportComment::where('created_at', '>=', Carbon::now()->subDays(30));
return view('reports.user.displayreports')->with('reports', $reports)