-
Notifications
You must be signed in to change notification settings - Fork 18
Class: Errors
Saqib Razzaq edited this page Mar 17, 2019
·
3 revisions
Errors is a tiny class for globally managing errors in BriskLimbs.
Add a new error message
Error message to be added
$errors = new Errors();
$errors->add('Failed to login');
Fetch all added errors
An array of all added messages
$errors->collect()