From 38e80283004b81d6473c3abcf4df094d80ee2d73 Mon Sep 17 00:00:00 2001 From: ajsy <35658596+ajsy@users.noreply.github.com> Date: Fri, 19 Apr 2019 13:20:37 +0300 Subject: [PATCH] Update LocationsController.php --- app/Http/Controllers/LocationsController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/LocationsController.php b/app/Http/Controllers/LocationsController.php index 01c16d58cd..c51dfd28b1 100755 --- a/app/Http/Controllers/LocationsController.php +++ b/app/Http/Controllers/LocationsController.php @@ -265,7 +265,7 @@ class LocationsController extends Controller return redirect()->route('locations.index')->with('error', trans('admin/locations/message.does_not_exist', compact('id'))); } - public function printOnlyAssignedToLocation($id) + public function print_assigned($id) { $show_location = Location::where('id',$id)->withTrashed()->first(); @@ -276,7 +276,7 @@ class LocationsController extends Controller } - public function printAllAssignedToLocation($id) + public function print_all_assigned($id) { $show_location = Location::where('id',$id)->withTrashed()->first();