diff --git a/app/Http/Controllers/Admin/Master/CustomerController.php b/app/Http/Controllers/Admin/Master/CustomerController.php index d1a0a36..4367dbd 100644 --- a/app/Http/Controllers/Admin/Master/CustomerController.php +++ b/app/Http/Controllers/Admin/Master/CustomerController.php @@ -143,14 +143,14 @@ public function Store(customerRequest $request) $this->CustomerResponse->create($request); $notification = ['message' => 'Successfully created new customer.', 'alert-type' => 'primary', - 'gravity' => 'top', + 'gravity' => 'bottom', 'position' => 'right']; return redirect()->route('customer.index')->with($notification); } catch (\Exception) { $notification = ['message' => 'Failed to created data new customer.', 'alert-type' => 'danger', - 'gravity' => 'top', + 'gravity' => 'bottom', 'position' => 'right']; return redirect()->route('customer.index')->with($notification);