mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-24 03:59:08 -05:00
update: prefer sentence case over title case in toast notifications
This commit is contained in:
@@ -84,7 +84,7 @@ class InternalController extends Controller
|
||||
$internal->update($request->validated());
|
||||
|
||||
return to_route('staff.internals.index')
|
||||
->with('success', 'Internal Group Was Updated Successfully!');
|
||||
->with('success', 'Internal group was updated successfully!');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -103,7 +103,7 @@ class InternalController extends Controller
|
||||
Internal::create($request->validated());
|
||||
|
||||
return to_route('staff.internals.index')
|
||||
->with('success', 'New Internal Group added!');
|
||||
->with('success', 'New internal group added!');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -114,6 +114,6 @@ class InternalController extends Controller
|
||||
$internal->delete();
|
||||
|
||||
return to_route('staff.internals.index')
|
||||
->with('success', 'Group Has Been Removed.');
|
||||
->with('success', 'Group has been removed.');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user