From e936fc721e9061a92164174a567506b7dbe03b9e Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 12 Aug 2020 02:15:58 -0500 Subject: [PATCH] namespace fix --- app/Http/Controllers/SystemRentals/RentalAdminController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/SystemRentals/RentalAdminController.php b/app/Http/Controllers/SystemRentals/RentalAdminController.php index 9d7756453..75da7b6f0 100644 --- a/app/Http/Controllers/SystemRentals/RentalAdminController.php +++ b/app/Http/Controllers/SystemRentals/RentalAdminController.php @@ -29,8 +29,8 @@ class RentalAdminController extends Controller * the information regarding the rental systems */ public function displayRentalSystems() { - //Get the rental systems form the database - $rentals = RentalSytem::all(); + //Get the rental systems from the database + $rentals = RentalSystem::all(); //Return the view with the data return view('rental.list')->with('rentals', $rentals);