update: prefer sentence case over title case in toast notifications

This commit is contained in:
Roardom
2025-09-20 01:57:35 +00:00
parent 9951eaabe1
commit cc26a18d05
61 changed files with 159 additions and 159 deletions
@@ -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.');
}
}